Re: Console Command Parser?
Suggestions/Ideas?
Dynamic Code has its benifits
but there is a little too much overhead/power for what i want to do.
I basicly want to parse single line commands this does not merit creating a new appdomain (this application will be long running and, hopefully, used offen so executing it in the primary/default appdomain is not an option when using dynamic code)
---
This is my current idea on how to implement this:
1) Create a separate assembly for console accessible commands
2) Only basic types are accepted (String, Int32, Boolean, Arrays)
I, as a programmer, would like to have commands like this:
MyRootNameSpace.Users.Add("String", 123, {"string", "string1"})
but i wonder if non-programmers would find this to confusing...?