本文整理匯總了VB.NET中System.Runtime.CompilerServices.ConditionalWeakTable<TKey,TValue>類的典型用法代碼示例。如果您正苦於以下問題:VB.NET ConditionalWeakTable<TKey,TValue>類的具體用法?VB.NET ConditionalWeakTable<TKey,TValue>怎麽用?VB.NET ConditionalWeakTable<TKey,TValue>使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了ConditionalWeakTable<TKey,TValue>類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: Example
' 導入命名空間
Imports System.Runtime.CompilerServices
Module Example
Public Sub Main()
Dim mc1 As New ManagedClass()
Dim mc2 As New ManagedClass()
Dim mc3 As New ManagedClass()
Dim cwt As New ConditionalWeakTable(Of ManagedClass, ClassData)()
cwt.Add(mc1, New ClassData())
cwt.Add(mc2, New ClassData())
cwt.Add(mc3, New ClassData())
Dim wr2 As New WeakReference(mc2)
mc2 = Nothing
GC.Collect()
Dim data As ClassData = Nothing
If wr2.Target Is Nothing Then
Console.WriteLine("No strong reference to mc2 exists.")
Else If cwt.TryGetValue(mc2, data) Then
Console.WriteLine("Data created at {0}", data.CreationTime)
Else
Console.WriteLine("mc2 not found in the table.")
End If
End Sub
End Module
Public Class ManagedClass
End Class
Public Class ClassData
Public CreationTime As DateTime
Public Data As Object
Public Sub New()
Me.CreationTime = DateTime.Now
Me.Data = New Object()
End Sub
End Class
輸出:
No strong reference to mc2 exists.