我正试图使一个文本作家根据我的类属性在以下模式:
MyClass
ID 1
Name MyName
AnotherProperty SomeValue
ThisIsAnotherClass
AnotherClassProperties 1
//Example class
public class MyClass
{
public int ID { get; set; }
public string Name { get; set; }
public string AnotherProperty { get; set; }
public AnotherClass ThisIsAnotherClass { get; set; }
}
所以我取每个属性名,写它,一个空格,然后它的值(如果有的话)。现在我试着实现对列表和任何类似数组的支持,比如:
MyClass
ArrayTest
1
2
3
如果它是一个类,我将对函数进行递归,这样我就可以以这种模式显示列表/数组中的所有值。(这是一个webservice)
我的问题是,我怎么能找到如果一个特定的属性是可列出的东西?
我试过:
Type type = myObject.GetType();
PropertyInfo[] properties = type.GetProperties();
for(int i = 0; i < properties.Length; i++)
{
if(properties[i].PropertyType.IsGeneric) //Possible List/Collection/Dictionary
{
//Here is my issue
Type subType = properties[i].PropertyType.GetGenericTypeDefinition();
bool isAssignable = subType.IsAssignableFrom(typeof(ICollection<>)); //Always false
bool isSubclass = subType.IsSubclassOf(typeof(ICollection<>)); //Always false
//How can I figure if it inherits ICollection/IEnumerable so I can use it's interface to loop through it's elements?
}
else if(properties[i].PropertyType.IsArray) //Array
{
}
else if(properties[i].PropertyType.IsClass && !properties[i].PropertyType.Equals(typeof(String)))
{
//Non-string Subclasses, recursive here
}
else
{
//Value types, write the text + value
}
}
就像评论中提到的:使用Json作为格式化对象的方式,它将节省很多时间。
如果您有理由不这样做,您可以检查类型是否可枚举:这也适用于Type.IsArray
的情况。
typeof(IEnumerable).IsAssignableFrom(properties[i].PropertyType)
作为一个附加的注意事项:也许您不想枚举String
和byte[]
类型的对象。