1.3.3.0
Main improvements
- Support <> syntax for specify types of generics
- Support of creation initializers for collections, dictionnaries and objects
Here a few examples of what this version allow to do :
new List<string>() { "text1", "text2" }
new Dictionnary<string, int> { {"seven", 7}, {"nine", 9}}
new Dictionnary<string, int> { ["seven"]= 7, ["nine"] = 9}
new MyObject() { MyStringProperty = "A value", MyIntProperty = 8}
Other changes
- Add ListOfType Standard function
- A reference on the current evaluator added in VariableEvaluationEventArg and FunctionEvaluationEventArg
- Small improvement of the Indexing []