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

◆ StartsWith()

static bool System.Xml.Xsl.Runtime.XsltFunctions.StartsWith ( string s1,
string s2 )
inlinestatic

Definition at line 15 of file XsltFunctions.cs.

16 {
17 if (s1.Length >= s2.Length)
18 {
19 return string.CompareOrdinal(s1, 0, s2, 0, s2.Length) == 0;
20 }
21 return false;
22 }