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.
私はC#で作業しており、IEnumerableオブジェクトを持っています。注(IEnumerableではないIEnumerable<T>)
IEnumerable
IEnumerable<T>
そのオブジェクト内の個別のアイテムを見つけるにはどうすればよいですか?
を使用CastしてからDistinct
Cast
Distinct
var distinctItems = items.Cast<object>().Distinct();