示例#1
0
        /// <summary>
        /// </summary>
        /// <param name="other"></param>
        public override void Copy(ContainerBase other)
        {
            base.Copy(other);
            EnumerationContainerBase that = other as EnumerationContainerBase;

            m_bIsNull = that.m_bIsNull;
            m_Value   = that.m_Value;
        }
示例#2
0
 /// <summary>
 /// Copy constructor for use by Clone.
 /// </summary>
 /// <param name="other">Other enumeration container.</param>
 protected EnumerationContainerBase(EnumerationContainerBase other)
     : base(other)
 {
     m_bIsNull = other.m_bIsNull;
     m_Value   = other.m_Value;
 }