This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
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
}
}