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 JetBrains.Annotations
{
// Token: 0x0200043D RID: 1085
[Flags]
public enum ImplicitUseKindFlags
{
// Token: 0x04000FBC RID: 4028
Default = 7,
// Token: 0x04000FBD RID: 4029
Access = 1,
// Token: 0x04000FBE RID: 4030
Assign = 2,
// Token: 0x04000FBF RID: 4031
InstantiatedWithFixedConstructorSignature = 4,
// Token: 0x04000FC0 RID: 4032
InstantiatedNoFixedConstructorSignature = 8
}
}