IsPrefix() public method

public IsPrefix ( string src, string target, CompareOptions opt ) : bool
src string
target string
opt CompareOptions
return bool
Beispiel #1
0
 void IsPrefix(string s1, string s2, CompareOptions opt)
 {
     Console.Error.WriteLine("prefix ({3}): {0} {1} / {2}",
                             coll.IsPrefix(s1, s2, opt), s1, s2, opt);
 }