System.Xml.Xsl.Runtime.XmlCollation.IndexOf C# (CSharp) Method

IndexOf() private method

Return the index of str1 in str2, or -1 if str1 is not a substring of str2.
private IndexOf ( string str1, string str2 ) : int
str1 string
str2 string
return int
        internal int IndexOf(string str1, string str2) {
            return Culture.CompareInfo.IndexOf(str1, str2, this.compops);
        }