本文整理汇总了VB.NET中System.Linq.Enumerable.Union方法的典型用法代码示例。如果您正苦于以下问题:VB.NET Enumerable.Union方法的具体用法?VB.NET Enumerable.Union怎么用?VB.NET Enumerable.Union使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。
在下文中一共展示了Enumerable.Union方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的VB.NET代码示例。
示例1: ints1
' Create two arrays of integer values.
Dim ints1() As Integer = {5, 3, 9, 7, 5, 9, 3, 7}
Dim ints2() As Integer = {8, 3, 6, 4, 4, 9, 1, 0}
' Get the set union of the two arrays.
Dim union As IEnumerable(Of Integer) = ints1.Union(ints2)
' Display the resulting set's values.
Dim output As New System.Text.StringBuilder
For Each num As Integer In union
output.AppendLine(num & " ")
Next
Console.WriteLine(output.ToString())
开发者ID:VB.NET开发者,项目名称:System.Linq,代码行数:13,代码来源:Enumerable.Union 输出:
5
3
9
7
8
6
4
1
0
示例2: IEquatable
Public Class ProductA
Inherits IEquatable(Of ProductA)
Public Property Name As String
Public Property Code As Integer
Public Function Equals(ByVal other As ProductA) As Boolean
If other Is Nothing Then Return False
Return Me.Name = other.Name AndAlso Me.Code = other.Code
End Function
Public Overrides Function Equals(ByVal obj As Object) As Boolean
Return Equals(TryCast(obj, ProductA))
End Function
Public Overrides Function GetHashCode() As Integer
Return (Name, Code).GetHashCode()
End Function
End Class
开发者ID:VB.NET开发者,项目名称:System.Linq,代码行数:20,代码来源:Enumerable.Union
示例3: store1
Dim store1() As ProductA =
{New Product With {.Name = "apple", .Code = 9},
New Product With {.Name = "orange", .Code = 4}}
Dim store2() As ProductA =
{New Product With {.Name = "apple", .Code = 9},
New Product With {.Name = "lemon", .Code = 12}}
开发者ID:VB.NET开发者,项目名称:System.Linq,代码行数:7,代码来源:Enumerable.Union
示例4:
' Get the products from the both arrays
' excluding duplicates.
Dim union = store1.Union(store2)
For Each product In union
Console.WriteLine(product.Name & " " & product.Code)
Next
开发者ID:VB.NET开发者,项目名称:System.Linq,代码行数:8,代码来源:Enumerable.Union 输出:
apple 9
orange 4
lemon 12
示例5: IEqualityComparer
Public Class Product
Public Property Name As String
Public Property Code As Integer
End Class
' Custom comparer for the Product class
Public Class ProductComparer
Implements IEqualityComparer(Of Product)
Public Function Equals1(
ByVal x As Product,
ByVal y As Product
) As Boolean Implements IEqualityComparer(Of Product).Equals
' Check whether the compared objects reference the same data.
If x Is y Then Return True
'Check whether any of the compared objects is null.
If x Is Nothing OrElse y Is Nothing Then Return False
' Check whether the products' properties are equal.
Return (x.Code = y.Code) AndAlso (x.Name = y.Name)
End Function
Public Function GetHashCode1(
ByVal product As Product
) As Integer Implements IEqualityComparer(Of Product).GetHashCode
' Check whether the object is null.
If product Is Nothing Then Return 0
' Get hash code for the Name field if it is not null.
Dim hashProductName =
If(product.Name Is Nothing, 0, product.Name.GetHashCode())
' Get hash code for the Code field.
Dim hashProductCode = product.Code.GetHashCode()
' Calculate the hash code for the product.
Return hashProductName Xor hashProductCode
End Function
End Class
开发者ID:VB.NET开发者,项目名称:System.Linq,代码行数:42,代码来源:Enumerable.Union
示例6: store1
Dim store1() As Product =
{New Product With {.Name = "apple", .Code = 9},
New Product With {.Name = "orange", .Code = 4}}
Dim store2() As Product =
{New Product With {.Name = "apple", .Code = 9},
New Product With {.Name = "lemon", .Code = 12}}
开发者ID:VB.NET开发者,项目名称:System.Linq,代码行数:7,代码来源:Enumerable.Union
示例7: ProductComparer
' Get the products from the both arrays
' excluding duplicates.
Dim union = store1.Union(store2, New ProductComparer())
For Each product In union
Console.WriteLine(product.Name & " " & product.Code)
Next
开发者ID:VB.NET开发者,项目名称:System.Linq,代码行数:8,代码来源:Enumerable.Union 输出:
apple 9
orange 4
lemon 12
注:本文中的System.Linq.Enumerable.Union方法示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论