OK、私は別のSOの質問に対する答えを得る過程にあり、intの個別のリストを取得するために次の関数を思いつきました:
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();
}
varVS2012 で見ると、その型Int32は notと表示されていList<Int32>ます。ここに示されています:

var は型であってはいけませんList<Int32>か??