Exemplo n.º 1
0
        public bool Equals(string x, string y)
        {
            string yChanged = y?.Replace(YPath, XPath);

            return(SharedHelper.StrCmpLogicalW(x, yChanged).Equals(0));
        }
Exemplo n.º 2
0
 public int Compare(object x, object y)
 {
     return(SharedHelper.StrCmpLogicalW(((ListViewItem)x).Text, ((ListViewItem)y).Text));
 }
Exemplo n.º 3
0
 public int Compare(string x, string y)
 {
     return(SharedHelper.StrCmpLogicalW(x, y));
 }