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.
次のように Where 句の前に OrderBy 句を使用すると、パフォーマンスが低下するかどうかを理解しようとしています。
List<string> names = new List<string> { //... }; var ns = names.OrderBy(n => n).Where(n => n.Length == 5);
または、Where 句が OrderBy 句の前に実行されるように、コンパイラは命令を再配置しますか?