Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は IList を持っています:
IList list = CallMyMethodToGetIList();
私はそれを得ることができるタイプを知りません
Type entityType = list[0].GetType();`
このリストを次のような LINQ で検索したいと思います。
var itemFind = list.SingleOrDefault(MyCondition....);
助けてくれてありがとう。
IList list = ... // if all items are of given type IEnumerable<YourType> seq = list.Cast<YourType>().Where(condition); // if only some of them IEnumerable<YourType> seq = list.OfType<YourType>().Where(condition);