System.Windows.Forms.ComboBox.ObjectCollection.ObjectComparer.Compare C# (CSharp) Method

Compare() public method

public Compare ( object x, object y ) : int
x object
y object
return int
				public int Compare (object x, object y)
				{
					return string.Compare (owner.GetItemText (x), owner.GetItemText (y));
				}
				#endregion
ComboBox.ObjectCollection.ObjectComparer