Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ MethodAttributes

Enumerator
MemberAccessMask 
PrivateScope 
Private 
FamANDAssem 
Assembly 
Family 
FamORAssem 
Public 
Static 
Final 
Virtual 
HideBySig 
CheckAccessOnOverride 
VtableLayoutMask 
ReuseSlot 
NewSlot 
Abstract 
SpecialName 
PinvokeImpl 
UnmanagedExport 
RTSpecialName 
HasSecurity 
RequireSecObject 
ReservedMask 

Definition at line 4 of file MethodAttributes.cs.

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 Final = 0x20,
16 Virtual = 0x40,
17 HideBySig = 0x80,
19 VtableLayoutMask = 0x100,
20 ReuseSlot = 0,
21 NewSlot = 0x100,
22 Abstract = 0x400,
23 SpecialName = 0x800,
24 PinvokeImpl = 0x2000,
26 RTSpecialName = 0x1000,
27 HasSecurity = 0x4000,
28 RequireSecObject = 0x8000,
29 ReservedMask = 0xD000
30}