IsSuffix() public method

public IsSuffix ( string src, string target, CompareOptions opt ) : bool
src string
target string
opt CompareOptions
return bool
Ejemplo n.º 1
0
 void IsSuffix(string s1, string s2, CompareOptions opt)
 {
     Console.Error.WriteLine("suffix ({3}): {0} {1} / {2}",
                             coll.IsSuffix(s1, s2, opt), s1, s2, opt);
 }