public bool ContainsValue(DataTypeBase value)
 {
     return(_innerHash.ContainsValue(value));
 }
Example #2
0
        /// <summary>
        /// Copies all instance data of the <see cref="DataTypeBase" /> to a given
        /// <see cref="DataTypeBase" />.
        /// </summary>
        protected void CopyTo(DataTypeBase clone)
        {
            base.CopyTo(clone);

            clone._id = _id;
            clone._refID = _refID;
        }
 public void Add(string key, DataTypeBase value)
 {
     _innerHash.Add(key, value);
 }