5 lines
245 B
Text
5 lines
245 B
Text
//Create and initialize ArrayList
|
|
var myAl := new system'collections'ArrayList().append("Hello").append("World").append("!");
|
|
|
|
//Create and initialize List
|
|
var myList := new system'collections'List().append("Hello").append("World").append("!");
|