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

◆ StartsWith() [2/4]

bool System.String.StartsWith ( string value)
inline

Definition at line 805 of file String.cs.

806 {
807 if ((object)value == null)
808 {
809 throw new ArgumentNullException("value");
810 }
811 return StartsWith(value, StringComparison.CurrentCulture);
812 }
bool StartsWith(string value)
Definition String.cs:805

References System.String.StartsWith(), and System.value.

Referenced by System.String.StartsWith().