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

◆ operator==() [1/3]

static bool System.Reflection.ConstructorInfo.operator== ( ConstructorInfo? left,
ConstructorInfo? right )
inlinestaticinherited

Definition at line 40 of file ConstructorInfo.cs.

41 {
42 if ((object)right == null)
43 {
44 if ((object)left != null)
45 {
46 return false;
47 }
48 return true;
49 }
50 if ((object)left == right)
51 {
52 return true;
53 }
54 return left?.Equals(right) ?? false;
55 }

References System.Reflection.ConstructorInfo.Equals().