Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TypeAttributes.cs
Go to the documentation of this file.
1namespace System.Reflection;
2
3[Flags]
4public enum TypeAttributes
5{
7 NotPublic = 0,
8 Public = 1,
9 NestedPublic = 2,
10 NestedPrivate = 3,
11 NestedFamily = 4,
15 LayoutMask = 0x18,
16 AutoLayout = 0,
18 ExplicitLayout = 0x10,
19 ClassSemanticsMask = 0x20,
20 Class = 0,
21 Interface = 0x20,
22 Abstract = 0x80,
23 Sealed = 0x100,
24 SpecialName = 0x400,
25 Import = 0x1000,
26 Serializable = 0x2000,
27 WindowsRuntime = 0x4000,
28 StringFormatMask = 0x30000,
29 AnsiClass = 0,
30 UnicodeClass = 0x10000,
31 AutoClass = 0x20000,
32 CustomFormatClass = 0x30000,
33 CustomFormatMask = 0xC00000,
34 BeforeFieldInit = 0x100000,
35 RTSpecialName = 0x800,
36 HasSecurity = 0x40000,
37 ReservedMask = 0x40800
38}