Hi Ron,
To provide scriptable access to the members of a dynamic host object, ClearScript requires that the object provide a correct implementation of
Thanks for your question, and good luck!
To provide scriptable access to the members of a dynamic host object, ClearScript requires that the object provide a correct implementation of
GetDynamicMemberNames
. In your example, it could look something like this:publicoverride IEnumerable<string> GetDynamicMemberNames() { returnthis._dict.Keys; }