Пример #1
0
        public bool Equals(CExistEquipInfoSet other)
        {
            bool flag = true;

            for (int i = 0; i < 6; i++)
            {
                flag = flag && this.m_existEquipInfos[i].Equals(other.m_existEquipInfos[i]);
            }
            return(flag && (this.m_existEquipInfoCount == other.m_existEquipInfoCount));
        }
Пример #2
0
 public void Clone(CExistEquipInfoSet existEquipInfoSet)
 {
     if (existEquipInfoSet != null)
     {
         for (int i = 0; i < 6; i++)
         {
             this.m_existEquipInfos[i] = existEquipInfoSet.m_existEquipInfos[i];
         }
         this.m_existEquipInfoCount = existEquipInfoSet.m_existEquipInfoCount;
     }
 }