21 lines
672 B
C#
21 lines
672 B
C#
using System;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Specifies the behavior for a forced garbage collection.</summary>
|
|
// Token: 0x0200066F RID: 1647
|
|
[Serializable]
|
|
public enum GCCollectionMode
|
|
{
|
|
/// <summary>The default setting for this enumeration, which is currently <see cref="F:System.GCCollectionMode.Forced" />. </summary>
|
|
// Token: 0x04001900 RID: 6400
|
|
Default,
|
|
/// <summary>Forces the garbage collection to occur immediately.</summary>
|
|
// Token: 0x04001901 RID: 6401
|
|
Forced,
|
|
/// <summary>Allows the garbage collector to determine whether the current time is optimal to reclaim objects. </summary>
|
|
// Token: 0x04001902 RID: 6402
|
|
Optimized
|
|
}
|
|
}
|