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

◆ EndsWith() [1/4]

bool System.String.EndsWith ( char value)
inline

Definition at line 511 of file String.cs.

512 {
513 int num = Length - 1;
514 if ((uint)num < (uint)Length)
515 {
516 return this[num] == value;
517 }
518 return false;
519 }

References System.String.Length, and System.value.