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

◆ StartsWith() [1/4]

bool System.String.StartsWith ( char value)
inline

Definition at line 873 of file String.cs.

874 {
875 if (Length != 0)
876 {
877 return _firstChar == value;
878 }
879 return false;
880 }
char _firstChar
Definition String.cs:35

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