freeeborn
freeeborn
Idea on arguments vs invocation: indexers ``` csharp Cmd.dir.s[true].order["name"](); Cmd.type("myfile.txt"); // executes without another() ```
I would suggest to make the cmd class immutable, and every time you access a member (of root or member object), instead of modifying the instance, you create and return...
Yes, I mean that instead of having "commando" object you might return a new cmd object. On Mon, Dec 10, 2012 at 11:29 AM, Manoj [email protected] wrote: > cmd now...