ExtentionsForEachT(IEnumerableT, String, ActionT, Int32, Int32) 方法
二维数组集合的ForEach加强,可用字符串选择多列 注意总是从1开始
用户方法依次传入 二维数组,行号,列号 可使用行列参数 下标按1算起
arr.ForEach("1,3-6",Function(x,i,j) x(i,j)=x(i,j)+1)'指定列元素+1
命名空间: Excel880VSTO程序集: Excel880VSTO (在 Excel880VSTO.dll 中) 版本:1.5.8.0 (1.5.8.0)
public static IEnumerable<T[]> ForEach<T>(
this ref IEnumerable<T[]> arr,
string 多列,
Action<T[,], int, int> 方法
)
<ExtensionAttribute>
Public Shared Function ForEach(Of T) (
ByRef arr As IEnumerable(Of T()),
多列 As String,
方法 As Action(Of T(,), Integer, Integer)
) As IEnumerable(Of T())
Dim arr As IEnumerable(Of T())
Dim 多列 As String
Dim 方法 As Action(Of T(,), Integer, Integer)
Dim returnValue As IEnumerable(Of T())
returnValue = arr.ForEach(多列, 方法)
- arr IEnumerableT
-
- 多列 String
- ""代表所有列,"1,3-6"代表1,3,4,5,6列
- 方法 ActionT, Int32, Int32
- Sub(源数组,行号,列号) '注意这里内部转为二维数组处理,行列号都按1算
- T
IEnumerableT在 Visual Basic 和 C# 中,这个方法可以当成为类型
IEnumerableT 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。