System.Dynamic.ExpandoClass.ExpandoClass C# (CSharp) Метод

ExpandoClass() приватный Метод

Constructs a new ExpandoClass that can hold onto the specified keys. The keys must be sorted ordinally. The hash code must be precalculated for the keys.
private ExpandoClass ( string keys, int hashCode ) : System.Collections.Generic
keys string
hashCode int
Результат System.Collections.Generic
        internal ExpandoClass(string[] keys, int hashCode)
        {
            _hashCode = hashCode;
            _keys = keys;
        }

Same methods

ExpandoClass::ExpandoClass ( ) : System.Collections.Generic