郑广学VSTO火箭速成班 VBAYYDS.COM

ExtentionsDistinct 方法

重载列表

DistinctT(T) 2维数组整行去重
arr.Distinct
DistinctT(IEnumerableT) 二维数组集合整行去重
arr.AsEnumerable.Distinct
DistinctT(IEnumerableT, Int32) 二维数组集合单列去重
arr.AsEnumerable.Distinct(3)'第3列去重 得到单列结果
DistinctT(T, Int32) 2维数组选取某列去重结果为单列二维数组
arr.Distinct(2) 指定第2列

参见