Boo.Lang.Hash.Hash C# (CSharp) Method

Hash() public method

public Hash ( IDictionary other ) : System
other IDictionary
return System
        public Hash(IDictionary other)
            : this()
        {
            if (null == other)
            {
                throw new ArgumentNullException("other");
            }
            foreach (DictionaryEntry entry in other)
            {
                Add(entry.Key, entry.Value);
            }
        }

Same methods

Hash::Hash ( ) : System
Hash::Hash ( IEnumerable enumerable ) : System
Hash::Hash ( SerializationInfo info, StreamingContext context ) : System
Hash::Hash ( bool caseInsensitive ) : System