ExtentionsZipRepeatT(IEnumerableT, Int32) 方法
二维数组横向重复N次
arr.AsIEnumerable.RepeatZip(100) 原来的序列 向右重复100次得到一个大的新序列 主要用于测试
命名空间: Excel880VSTO程序集: Excel880VSTO (在 Excel880VSTO.dll 中) 版本:1.5.8.0 (1.5.8.0)
public static IEnumerable<Object[]> ZipRepeat<T>(
this IEnumerable<T[]> arr,
int 次数
)
<ExtensionAttribute>
Public Shared Function ZipRepeat(Of T) (
arr As IEnumerable(Of T()),
次数 As Integer
) As IEnumerable(Of Object())
Dim arr As IEnumerable(Of T())
Dim 次数 As Integer
Dim returnValue As IEnumerable(Of Object())
returnValue = arr.ZipRepeat(次数)
- arr IEnumerableT
-
- 次数 Int32
-
- T
IEnumerableObject在 Visual Basic 和 C# 中,这个方法可以当成为类型
IEnumerableT 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。