Determine the best available approximation of the number of bytes currently allocated in managed memory : Garbage Collection « Development « VB.Net






Determine the best available approximation of the number of bytes currently allocated in managed memory

 

    Imports System

    Class MyGCCollectClass
        Private maxGarbage As Long = 10000
        Public Shared Sub Main()
            Dim myGCCol As New MyGCCollectClass
            Console.WriteLine("The highest generation is {0}", GC.MaxGeneration)
            myGCCol.MakeSomeGarbage()

            Console.WriteLine("Total Memory: {0}", GC.GetTotalMemory(False))

        End Sub
        Sub MakeSomeGarbage()
            Dim vt As Version
            Dim i As Integer
            For i = 0 To maxGarbage - 1
                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.Perform a collection of generation 0 only
11.GC.GetGeneration returns the current generation number of the target of a specified weak reference.