从PropertyType获取对象类型?

时间:2015-04-24 11:34:30

标签: c# reflection

我有一个属性的类型。 propertyType基本上是

public abstract Type PropertyType { get; }

从此我想知道对象类型是Employee

propertyType    {Name = "Employee[]"  FullName = "DataContract.Employee[]"}

我怎么能得到这个?

1 个答案:

答案 0 :(得分:1)

Type t;
if (propertyType.IsArray) // true
   t = propertyType.GetElementType(); // t = Employee