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

◆ Equals() [2/3]

bool System.Range.Equals ( Range other)
inline

Definition at line 29 of file Range.cs.

30 {
31 if (other.Start.Equals(Start))
32 {
33 return other.End.Equals(End);
34 }
35 return false;
36 }
Index End
Definition Range.cs:10
Index Start
Definition Range.cs:8

References System.Range.End, System.other, and System.Range.Start.