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

◆ IsConstructor

bool System.Reflection.MethodBase.IsConstructor
getinherited

Definition at line 32 of file MethodBase.cs.

33 {
34 get
35 {
36 if (this is ConstructorInfo && !IsStatic)
37 {
38 return (Attributes & MethodAttributes.RTSpecialName) == MethodAttributes.RTSpecialName;
39 }
40 return false;
41 }
42 }
MethodAttributes Attributes
Definition MethodBase.cs:24

Referenced by System.Dynamic.Utils.TypeExtensions.GetReturnType().