This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 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: 0x0200054E RID: 1358
[Token(Token = "0x200054E")]
[Serializable]
public enum LoadHint
{
/// <summary>No preference specified.</summary>
// Token: 0x0400188F RID: 6287
[Token(Token = "0x400188F")]
Default,
/// <summary>The dependency is always loaded.</summary>
// Token: 0x04001890 RID: 6288
[Token(Token = "0x4001890")]
Always,
/// <summary>The dependency is sometimes loaded.</summary>
// Token: 0x04001891 RID: 6289
[Token(Token = "0x4001891")]
Sometimes
}
}