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
@@ -0,0 +1,20 @@
using System;
namespace System.Runtime.CompilerServices
{
/// <summary>Specifies the preferred default binding for a dependent assembly.</summary>
// Token: 0x020002AB RID: 683
[Serializable]
public enum LoadHint
{
/// <summary>No preference specified.</summary>
// Token: 0x04000BCA RID: 3018
Default,
/// <summary>The dependency is always loaded.</summary>
// Token: 0x04000BCB RID: 3019
Always,
/// <summary>The dependency is sometimes loaded.</summary>
// Token: 0x04000BCC RID: 3020
Sometimes
}
}