-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature implementation: DynamicObject support #40
Comments
I am a bit curious. In what situation are you using Normally, projects use a This is still definitely something I'd like to support at some point. I am actually debating whether it would make sense in my event handlers to expose key/variable scopes using a Just curious... |
Sorry I hadn't gotten back to you sooner. The But, alone, For my particular needs, I needed a My end game was to be able to create a global variable The final purpose was to be able to take input data from any data source and dump it into a variable of type ... And, it works. Hopefully you can see where I'm going with this. |
I've created some initial support for DynamicObject objects. It works for DynamicObject objects that have members, but not indexes (like Array, IList, etc.). For the moment, it depends on Dynamitey.
It's over here in commit 05a7da4 and 90ef52c. I'm probably going to work on it some more before I'll be completely happy with it, but it does work.
This is a feature that is going to be required for a project I'm working on. I would be interested in what sort of inputs you might have regarding this feature as the project maintainer. I would be happy to send you a Pull Request when I wrap up the work on it. And, I'll be sure to include some test cases for DynamicObject objects as well.
The text was updated successfully, but these errors were encountered: