Esempio n. 1
0
        /// <summary>
        /// Replace fields from another item
        /// </summary>
        /// <param name="item">DatItem to pull new information from</param>
        /// <param name="fields">List of Fields representing what should be updated</param>
        public override void ReplaceFields(DatItem item, List <Field> fields)
        {
            // Replace common fields first
            base.ReplaceFields(item, fields);

            // If we don't have a RamOption to replace from, ignore specific fields
            if (item.ItemType != ItemType.RamOption)
            {
                return;
            }

            // Cast for easier access
            RamOption newItem = item as RamOption;

            // Replace the fields
            if (fields.Contains(Field.DatItem_Name))
            {
                Name = newItem.Name;
            }

            if (fields.Contains(Field.DatItem_Default))
            {
                Default = newItem.Default;
            }

            if (fields.Contains(Field.DatItem_Content))
            {
                Content = newItem.Content;
            }
        }
Esempio n. 2
0
        public override bool Equals(DatItem other)
        {
            // If we don't have a RamOption, return false
            if (ItemType != other.ItemType)
            {
                return(false);
            }

            // Otherwise, treat it as a RamOption
            RamOption newOther = other as RamOption;

            // If the BiosSet information matches
            return(Name == newOther.Name && Default == newOther.Default && Content == newOther.Content);
        }