好,我是在得到另一個SO問題的答案的過程中,我想出了下面的函數來獲取廉政局的一個獨特的列表:爲什麼是變種的Int32本例中沒有列出<Int32>
static List<Int32> Example(params List<Int32> lsts)
{
List<Int32> result = new List<int>();
foreach (var lst in lsts)
{
result = result.Concat(lst).ToList();
}
return result.Distinct().OrderBy(c => c).ToList();
}
當我在VS2012中查看var
時,它說它的類型爲Int32
而不是List<Int32>
。如下圖所示:
不宜VAR是List<Int32>
類型?
賓果,謝謝:)以爲這會是簡單的事情。 –