IndexOf() public method

public IndexOf ( string s, char target, CompareOptions opt ) : int
s string
target char
opt CompareOptions
return int
Beispiel #1
0
 void IndexOf(string s, char c, int idx, int len, CompareOptions opt)
 {
     Console.Error.WriteLine("cIndex ({3} {4} {5}): {0} {1} / {2}",
                             coll.IndexOf(s, c, idx, len, opt), s, c, opt, idx, len);
 }