System.Xml.Xsl.Runtime.XsltFunctions.StartsWith C# (CSharp) Method

StartsWith() public static method

public static StartsWith ( string s1, string s2 ) : bool
s1 string
s2 string
return bool
        public static bool StartsWith(string s1, string s2)
        {
            //return collation.IsPrefix(s1, s2);
            return s1.Length >= s2.Length && string.CompareOrdinal(s1, 0, s2, 0, s2.Length) == 0;
        }