本文整理汇总了VB.NET中System.Linq.Enumerable.Zip方法的典型用法代码示例。如果您正苦于以下问题:VB.NET Enumerable.Zip方法的具体用法?VB.NET Enumerable.Zip怎么用?VB.NET Enumerable.Zip使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。
在下文中一共展示了Enumerable.Zip方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: numbers
Dim numbers() As Integer = {1, 2, 3, 4}
Dim words() As String = {"one", "two", "three"}
Dim numbersAndWords = numbers.Zip(words, Function(first, second) first & " " & second)
For Each item In numbersAndWords
Console.WriteLine(item)
Next
输出:
1 one 2 two 3 three