0
class Abc {
public Mycollection<Person> Persons { get;set; }
}
class MyCollection<T> : ICollect<T> { ... }
私はリフレクションを使用してABC.PersonsのPropertyInfoを取得しています。PropertyInfoがICollectであるかどうかを知るにはどうすればいいですか? - ReflectionとGenericType
PropertyInfoがICollectであるかどうかを知りたいのですが、タイプ<>どうすればいいですか?
あなたは財産(人が)ICollect <であるかどうかを知りたいわけですか? – DennyFerra
@DennyFerrassoli ...それはまさに私が知りたいのです。 – BrijenVed