GC.GetGeneration returns the current generation number of the target of a specified weak reference. : Garbage Collection « Development « VB.Net






GC.GetGeneration returns the current generation number of the target of a specified weak reference.

 

   Imports System

   Class MyGCCollectClass
      Private maxGarbage As Long = 1000
      Public Shared Sub Main()
         Dim myGCCol As New MyGCCollectClass

         myGCCol.MakeSomeGarbage()

         Console.WriteLine("The object is in generation: {0}", _
                            GC.GetGeneration(myGCCol))

         GC.Collect()
      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

   
  








Related examples in the same category

1.Object GenerationObject Generation
2.Force a garbage collectForce a garbage collect
3.GC Suppress Finalize meGC Suppress Finalize me
4.Force Garbage CollectionForce Garbage Collection
5.Garbage collection startedGarbage collection started
6.Request garbage collectionRequest garbage collection
7.Get GC generation
8.GC Class
9.Determine which generation object is stored in
10.Determine the best available approximation of the number of bytes currently allocated in managed memory
11.Perform a collection of generation 0 only