/// <summary> /// Indicates whether this instance and a specified object are equal. /// </summary> /// <param name="obj">Another object to compare to.</param> /// <returns> /// true if obj and this instance are the same type and represent the same value; otherwise, false. /// </returns> public override bool Equals(object obj) { if (!(obj is ColumnInfo)) { return(false); } ColumnInfo ci = (ColumnInfo)obj; return(Width.Equals(ci.Width) && Content.Equals(ci.Content) && Alignment.Equals(ci.Alignment) && WordWrappingMethod.Equals(ci.WordWrappingMethod)); }
public bool Equals(ColumnInfo other) { return(Width.Equals(other.Width) && Content.Equals(other.Content) && Alignment.Equals(other.Alignment) && WordWrappingMethod.Equals(other.WordWrappingMethod)); }