Skip to content

1.3.3.0

Compare
Choose a tag to compare
@codingseb codingseb released this 15 Feb 12:36
· 395 commits to master since this release

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 []