Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
FieldAttributes.cs
Go to the documentation of this file.
1namespace System.Reflection;
2
3[Flags]
4public enum FieldAttributes
5{
7 PrivateScope = 0,
8 Private = 1,
9 FamANDAssem = 2,
10 Assembly = 3,
11 Family = 4,
12 FamORAssem = 5,
13 Public = 6,
14 Static = 0x10,
15 InitOnly = 0x20,
16 Literal = 0x40,
17 NotSerialized = 0x80,
18 SpecialName = 0x200,
19 PinvokeImpl = 0x2000,
20 RTSpecialName = 0x400,
21 HasFieldMarshal = 0x1000,
22 HasDefault = 0x8000,
23 HasFieldRVA = 0x100,
24 ReservedMask = 0x9500
25}