ExtentionsSliceT(T, Int32, Int32, Int32, Int32) 方法
二维数组按行列偏移切分数据 类似于Excel函数offset 默认取出剩余所有行列
命名空间: Excel880VSTO程序集: Excel880VSTO (在 Excel880VSTO.dll 中) 版本:1.5.8.0 (1.5.8.0)
public static IEnumerable<Object[]> Slice<T>(
this T[,] arr,
int 行号,
int 列号,
int 行数 = 0,
int 列数 = 0
)
<ExtensionAttribute>
Public Shared Function Slice(Of T) (
arr As T(,),
行号 As Integer,
列号 As Integer,
Optional 行数 As Integer = 0,
Optional 列数 As Integer = 0
) As IEnumerable(Of Object())
Dim arr As T(,)
Dim 行号 As Integer
Dim 列号 As Integer
Dim 行数 As Integer
Dim 列数 As Integer
Dim returnValue As IEnumerable(Of Object())
returnValue = arr.Slice(行号, 列号, 行数,
列数)
- arr T
-
- 行号 Int32
-
- 列号 Int32
-
- 行数 Int32 (Optional)
-
- 列数 Int32 (Optional)
-
- T
IEnumerableObject在 Visual Basic 和 C# 中,这个方法可以当成为类型
T 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。