Boo.Lang.Hash.Hash C# (CSharp) Méthode

Hash() public méthode

public Hash ( IEnumerable enumerable ) : System
enumerable IEnumerable
Résultat System
        public Hash(IEnumerable enumerable)
            : this()
        {
            if (null == enumerable)
            {
                throw new ArgumentNullException("enumerable");
            }

            foreach (Array tuple in enumerable)
            {
                Add(tuple.GetValue(0), tuple.GetValue(1));
            }
        }

Same methods

Hash::Hash ( ) : System
Hash::Hash ( IDictionary other ) : System
Hash::Hash ( SerializationInfo info, StreamingContext context ) : System
Hash::Hash ( bool caseInsensitive ) : System