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

◆ CompareTo() [1/6]

int IComparable. System.Text.Rune.CompareTo ( object obj)
inline

Definition at line 849 of file Rune.cs.

850 {
851 if (obj == null)
852 {
853 return 1;
854 }
855 if (obj is Rune other)
856 {
857 return CompareTo(other);
858 }
859 throw new ArgumentException(SR.Arg_MustBeRune);
860 }
int CompareTo(Rune other)
Definition Rune.cs:163
Rune(char ch)
Definition Rune.cs:61

References System.SR.Arg_MustBeRune, System.Text.Rune.CompareTo(), System.obj, and System.other.