IEnumerable
タイプのコレクションにプロパティが含まれているかどうかを調べようとしています。
RowModels
タイプのコレクションであると仮定するとIEnumerable
、私は...
foreach (var items in RowModels) {
if (items.GetType()
.GetProperties()
.Contains(items.GetType().GetProperty("TRId").Name) )
{
// do something...
}
}
エラーが発生します
System.Reflection.PropertyInfo[] does not contain a definition for 'Contains'
and the best extension method overload has some invalid arguments.