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
)
inline
static
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
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System
Xml
Xsl
Runtime
XsltFunctions
Generated by
1.10.0