Server.Insensitive.Compare C# (CSharp) Méthode

Compare() public static méthode

public static Compare ( string a, string b ) : int
a string
b string
Résultat int
		public static int Compare( string a, string b )
		{
			return m_Comparer.Compare( a, b );
		}

Usage Example

Exemple #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));
            }
All Usage Examples Of Server.Insensitive::Compare