示例#1
0
        /// <summary>
        /// Evaluates whether or not this and the given MultiTypeList are equal in value.
        /// </summary>
        ///
        /// <param name="value">The value to compare.</c>
        ///
        /// <returns>Whether or not they are equal.</returns>
        public bool Equals(MultiTypeList value)
        {
            if ((object)value == null)
            {
                return(false);
            }

            if (object.ReferenceEquals(this, value))
            {
                return(true);
            }

            if (Count != value.Count)
            {
                return(false);
            }

            for (int i = 0; i < Count; ++i)
            {
                if (this[i] != value[i])
                {
                    return(false);
                }
            }

            return(true);
        }
示例#2
0
 /// <summary>
 /// Creates a new MultiTypeValue instance containing the given value.
 /// </summary>
 ///
 /// <param name="value">The value that this should contain.</param>
 public MultiTypeValue(MultiTypeList value)
 {
     m_type  = Type.List;
     m_value = value;
 }
 /// <summary>
 /// Adds a new value to the list description.
 /// </summary>
 ///
 /// <param name="value">The value which should be added.</param>
 public MultiTypeListBuilder Add(MultiTypeList value)
 {
     return(Add(new MultiTypeValue(value)));
 }
示例#4
0
 /// <summary>
 /// Returns whether or not this contains the given value.
 /// </summary>
 ///
 /// <param name="value">The value to look up.</param>
 public bool Contains(MultiTypeList value)
 {
     return(Contains(new MultiTypeValue(value)));
 }
示例#5
0
 /// <summary>
 /// Adds a new value to the dictionary description.
 /// </summary>
 ///
 /// <param name="key">The key this value should be stored under.</param>
 /// <param name="value">The value which should be added.</param>
 public MultiTypeDictionaryBuilder Add(string key, MultiTypeList value)
 {
     return(Add(key, new MultiTypeValue(value)));
 }