本文整理汇总了VB.NET中System.UriTemplateEquivalenceComparer类的典型用法代码示例。如果您正苦于以下问题:VB.NET UriTemplateEquivalenceComparer类的具体用法?VB.NET UriTemplateEquivalenceComparer怎么用?VB.NET UriTemplateEquivalenceComparer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了UriTemplateEquivalenceComparer类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: UriTemplate
'Define two structurally equivalent templates
Dim temp1 As UriTemplate = New UriTemplate("weather/{state}/{city}")
Dim temp2 As UriTemplate = New UriTemplate("weather/{country}/{village}")
'Notice they are not reference equal, in other words
'they are do not refer to the same object
If temp1.Equals(temp2) Then
Console.WriteLine("{0} and {1} are reference equal", temp1, temp2)
Else
Console.WriteLine("{0} and {1} are NOT reference equal", temp1, temp2)
End If
'Notice they are structrually equal
If (temp1.IsEquivalentTo(temp2)) Then
Console.WriteLine("{0} and {1} are structurally equal", temp1, temp2)
Else
Console.WriteLine("{0} and {1} are NOT structurally equal", temp1, temp2)
End If
'Create a dictionary and use UriTemplateEquivalenceComparer as the comparer
Dim templates As Dictionary(Of UriTemplate, Object) = New Dictionary(Of UriTemplate, Object)(New UriTemplateEquivalenceComparer())
'Add template 1 into the dictionary
templates.Add(temp1, "template1")
'The UriTemplateEquivalenceComparer will be used here to compare the template in the table with template2
'they are structurally equivalent, so ContainsKey will return true.
If (templates.ContainsKey(temp2)) Then
Console.WriteLine("Both templates hash to the same value")
Else
Console.WriteLine("Both templates do NOT hash to the same value")
End If