public bool Equals(MarginContext other) { if (other == null) { return(false); } return(m_marginType == other.m_marginType); }
public bool Equals(MarginContext other) { if (other == null) return false; return m_marginType == other.m_marginType; }
/// <summary> /// Copy constructor. /// </summary> /// <param name="margin">The margin context.</param> public MarginContext(MarginContext ctxt) : base(ctxt) { m_marginType = ctxt.m_marginType; }