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.
私は2つのリストを持っています
var items = new[] { "one", "two", "three" }; var items2 = new[] { "one" };
2 つのリストを比較して、items2 で使用できないアイテムを取得したいと思います。基本的には、次の出力が必要です。
two three
これを試して
items.Except(items2).ToList().ForEach(x=>Console.Write(x));
items.Except(items2);
期待どおりの結果が得られます。