本文整理汇总了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
开发者ID:VB.NET开发者,项目名称:System,代码行数:32,代码来源:UriTemplateEquivalenceComparer
注:本文中的System.UriTemplateEquivalenceComparer类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论