如何识别作为动态传递的类型

时间:2014-12-30 09:52:44

标签: c# entity-framework wpf-4.0

我有两个wpf页面 - 主页面和组页面,组页面将实体传递给主页面构造函数,我使用动态关键字传递实体,每次不同实体传递到母版页时,我如何识别什么实体已经传递到母版页......

Class Master
 {

  Public Master (window parent, dynamic element)
  {
    ...
  }
 }

Class Group
{
  public void sendtomaster()
  {
    Master objMaster = new Master(window parentItem, dynamic entityItem);
  }
}

1 个答案:

答案 0 :(得分:0)

您可以像使用任何其他对象一样使用GetType。

    dynamic d = 1; 
    Type t = d.GetType(); 

将是System.Int32