Get GC generation : Garbage Collection « Development « VB.Net






Get GC generation

   


Module Module1

    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
        Console.Read()
    End Sub

End Module

   
    
    
  








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.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.