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