0
class Abc {
public Mycollection<Person> Persons { get;set; }
}
class MyCollection<T> : ICollect<T> { ... }
我正在使用反射,獲取ABC.Persons的PropertyInfo。如何知道PropertyInfo是否爲ICollect <>類型 - Reflection和GenericType
我想知道PropertyInfo是否爲ICollect <> type - 我該怎麼做?
你的意思是你想知道這個屬性(人)是ICollect <>? – DennyFerra
@DennyFerrassoli ...這正是我想知道的。 – BrijenVed