System.Globalization.SortKey.Equals C# (CSharp) Method

Equals() public method

public Equals ( object value ) : bool
value object
return bool
		public override bool Equals (object value)
		{
			SortKey other = (value as SortKey);
			if (other != null) {
				if ((this.lcid == other.lcid) &&
				   (this.options == other.options) &&
				   (Compare (this, other) == 0)) {
					return true;
				}
			}

			return false;
		}