ExtentionsForEachT(IEnumerableT, String, FuncT, T) 方法
二维数组集合的ForEach批量修改,可用字符串选择多列
arr.ForEach("1,3-5", Function(x) x+1)
表示1,3,4,5列 统一加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 多列,
Func<T, T> 函数
)
<ExtensionAttribute>
Public Shared Function ForEach(Of T) (
ByRef arr As IEnumerable(Of T()),
多列 As String,
函数 As Func(Of T, T)
) As IEnumerable(Of T())
Dim arr As IEnumerable(Of T())
Dim 多列 As String
Dim 函数 As Func(Of T, T)
Dim returnValue As IEnumerable(Of T())
returnValue = arr.ForEach(多列, 函数)
- arr IEnumerableT
-
- 多列 String
-
- 函数 FuncT, T
- Function(元素) 返回元素
- T
IEnumerableT在 Visual Basic 和 C# 中,这个方法可以当成为类型
IEnumerableT 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。