GCCollectionMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the behavior for a forced garbage collection.
public enum class GCCollectionMode
public enum GCCollectionMode
[System.Serializable]
public enum GCCollectionMode
type GCCollectionMode =
[<System.Serializable>]
type GCCollectionMode =
Public Enum GCCollectionMode
- Inheritance
- Attributes
Fields
Aggressive | 3 | Requests that the garbage collector decommit as much memory as possible. |
Default | 0 | The default setting for this enumeration, which is currently Forced. |
Forced | 1 | Forces the garbage collection to occur immediately. |
Optimized | 2 | Allows the garbage collector to determine whether the current time is optimal to reclaim objects. |
Examples
The following example forces a garbage collection for generation 2 objects with the Optimized setting.
using System;
class Program
{
static void Main(string[] args)
{
GC.Collect(2, GCCollectionMode.Optimized);
}
}
open System
GC.Collect(2, GCCollectionMode.Optimized)
Class Program
Public Shared Sub Main()
GC.Collect(2, GCCollectionMode.Optimized)
End Sub
End Class
Remarks
Use the GC.Collect method overload to specify the GCCollectionMode value.
Applies to
See also
Feedback
https://aka.ms/ContentUserFeedback.
Coming soon: Throughout 2024 we will be phasing out GitHub Issues as the feedback mechanism for content and replacing it with a new feedback system. For more information see:Submit and view feedback for