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.
文字列のリストと禁止文字列の配列があります。禁止された文字列配列に含まれていない文字列を選択する linq 式を探しています。
IEnumerable<string> except = listOfStrings.Except(forbiddenStrings)
stringlist.Where(x=>!stringarray.Contains(x));