using System;
namespace System
{
/// Specifies the behavior for a forced garbage collection.
// Token: 0x0200066F RID: 1647
[Serializable]
public enum GCCollectionMode
{
/// The default setting for this enumeration, which is currently .
// Token: 0x04001900 RID: 6400
Default,
/// Forces the garbage collection to occur immediately.
// Token: 0x04001901 RID: 6401
Forced,
/// Allows the garbage collector to determine whether the current time is optimal to reclaim objects.
// Token: 0x04001902 RID: 6402
Optimized
}
}