【发布时间】:2014-09-06 19:02:43
【问题描述】:
假设我有一个包含这样一些词的列表:
List<string> words = new List<string>{ "apple", "computer", "user", "AppLe", "USer", "photo", "USER" };
我想生成一个这样的新列表:
List<string> newWords = new List<string>{ "apple", "computer", "user", "photo" };
如何从所有多个单词中清除第一个列表(无论它们是如何写的)?
提前非常感谢, 菲利波
【问题讨论】: