Beispiel #1
0
        public bool Equals(SegmentContext other)
        {
            if (other == null)
            {
                return(false);
            }

            return(m_segDef.Equals(other.m_segDef));
        }
Beispiel #2
0
		public bool Equals(SegmentContext other)
		{
			if (other == null)
				return false;

			return m_segDef.Equals(other.m_segDef);
		}
Beispiel #3
0
 /// <summary>
 /// Copy constructor.
 /// </summary>
 /// <param name="ctxt">The simple context.</param>
 public SegmentContext(SegmentContext ctxt)
     : base(ctxt)
 {
     m_segDef = ctxt.m_segDef;
 }
Beispiel #4
0
		/// <summary>
		/// Copy constructor.
		/// </summary>
		/// <param name="ctxt">The simple context.</param>
		public SegmentContext(SegmentContext ctxt)
			: base(ctxt)
		{
			m_segDef = ctxt.m_segDef;
		}