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.
Cast()操作が全体で実行されているのかIEnumerable<T>、フィルタリングされた部分だけで実行されているのかを知りたい。
Cast()
IEnumerable<T>
Linq操作は延期され、最初の要素のみがキャストされてから返されます。
あなたはそれを自分で試すことができます:
object[] objects = new object[] { 123, "string" }; objects.Cast<int>().First();