SIL.FieldWorks.Common.Framework.DetailControls.SimpleComparer.Compare C# (CSharp) Méthode

Compare() public méthode

public Compare ( Object x, Object y ) : int
x Object
y Object
Résultat int
		public int Compare(Object x, Object y)
		{
			string sX = ((IKeyedObject)x).Key;
			string sY  = ((IKeyedObject)y).Key;
			return String.Compare(sX, sY, true);
		}
	}