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

ExpandoClass() private method

Constructs the empty ExpandoClass. This is the class used when an empty Expando object is initially constructed.
private ExpandoClass ( ) : System.Collections.Generic
return System.Collections.Generic
        internal ExpandoClass()
        {
            _hashCode = EmptyHashCode;
            _keys = Array.Empty<string>();
        }

Same methods

ExpandoClass::ExpandoClass ( string keys, int hashCode ) : System.Collections.Generic