Object Generation : Garbage Collection « Development « VB.Net






Object Generation

Object Generation
  
Imports System
Imports System.Text
Imports System.Text.RegularExpressions


Public Class MainClass
    Shared Sub Main(  )
    Dim myObject As Object = New Object()
    Dim i As Integer

    For i = 0 To 3
      Console.WriteLine(String.Format("Generation = {0}", _
                        GC.GetGeneration(myObject)))
      GC.Collect()
      GC.WaitForPendingFinalizers()
    Next i

    End Sub 'Main

   
End Class


           
         
    
  








Related examples in the same category

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