【发布时间】:2011-03-27 17:47:56
【问题描述】:
我有一个这样的列表:
List<string[]> countryList
字符串数组的每个元素都是另一个包含 3 个元素的数组。
所以countryList[0] 可能包含数组:
new string[3] { "GB", "United Kingdom", "United Kingdom" };
如何在 countryList 中搜索特定数组,例如如何搜索countryList
new string[3] { "GB", "United Kingdom", "United Kingdom" }?
【问题讨论】: