Compare() 공개 정적인 메소드

public static Compare ( string a, string b ) : int
a string
b string
리턴 int
예제 #1
0
            public int CompareTo(Entry other)
            {
                if (other == null)
                {
                    return(-1);
                }

                if (!Insensitive.Equals(File, other.File))
                {
                    return(Insensitive.Compare(File, other.File));
                }

                return(FileIndex.CompareTo(other.FileIndex));
            }
예제 #2
0
 public static int InsensitiveCompare(string first, string second)
 {
     return(Insensitive.Compare(first, second));
 }
예제 #3
0
파일: Utility.cs 프로젝트: jaedan/ModernUO
 public static int InsensitiveCompare(string first, string second) => Insensitive.Compare(first, second);