This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,25 @@
using System;
using Cpp2IlInjected;
namespace System.Runtime.CompilerServices
{
/// <summary>Specifies the preferred default binding for a dependent assembly.</summary>
// Token: 0x0200056C RID: 1388
[Token(Token = "0x200056C")]
[Serializable]
public enum LoadHint
{
/// <summary>No preference specified.</summary>
// Token: 0x04001952 RID: 6482
[Token(Token = "0x4001952")]
Default,
/// <summary>The dependency is always loaded.</summary>
// Token: 0x04001953 RID: 6483
[Token(Token = "0x4001953")]
Always,
/// <summary>The dependency is sometimes loaded.</summary>
// Token: 0x04001954 RID: 6484
[Token(Token = "0x4001954")]
Sometimes
}
}