GC.GetGeneration Method (WeakReference)
.NET Framework 4
Returns the current generation number of the target of a specified weak reference.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- wo
- Type: System.WeakReference
A WeakReference that refers to the target object whose generation number is to be determined.
| Exception | Condition |
|---|---|
| ArgumentException | Garbage collection has already been performed on wo. |
The following example demonstrates the use of the GetGeneration method to determine the age of a weak reference object.
Imports System Namespace GCGetGenerationWeakExample Class MyGCCollectClass Private maxGarbage As Long = 1000 Public Shared Sub Main() ' Create a strong reference to an object. Dim myGCCol As New MyGCCollectClass ' Put some objects in memory. myGCCol.MakeSomeGarbage() ' Get the generation of managed memory where myGCCol is stored. Console.WriteLine("The object is in generation: {0}", _ GC.GetGeneration(myGCCol)) ' Perform a full garbage collection. ' Because there is a strong reference to myGCCol, it will ' not be garbage collected. GC.Collect() ' Get the generation of managed memory where myGCCol is stored. Console.WriteLine("The object is in generation: {0}", _ GC.GetGeneration(myGCCol)) ' Create a WeakReference to myGCCol. Dim wkref As New WeakReference(myGCCol) ' Remove the strong reference to myGCCol. myGCCol = Nothing ' Get the generation of managed memory where wkref is stored. Console.WriteLine("The WeakReference to the object is in generation: {0}", _ GC.GetGeneration(wkref)) ' Perform another full garbage collection. ' A WeakReference will not survive a garbage collection. GC.Collect() ' Try to get the generation of managed memory where wkref is stored. ' Because it has been collected, an exception will be thrown. Try Console.WriteLine("The WeakReference to the object is in generation: {0}", _ GC.GetGeneration(wkref)) Console.Read() Catch e As Exception Console.WriteLine("The WeakReference to the object " & _ "has been garbage collected: '{0}'", e) Console.Read() End Try End Sub Sub MakeSomeGarbage() Dim vt As Version Dim i As Integer For i = 0 To maxGarbage - 1 ' Create objects and release them to fill up memory ' with unused objects. vt = New Version Next i End Sub End Class End Namespace
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.