System.Dynamic.ExpandoClass.ExpandoClass C# (CSharp) Method

ExpandoClass() private method

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
return System.Collections.Generic
        internal ExpandoClass(string[] keys, int hashCode)
        {
            _hashCode = hashCode;
            _keys = keys;
        }

Same methods

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