MultiArray XS
Posted: Thu Apr 16, 2020 2:32 pm
Hello,
when create a Array with String i write:
How to do with MultiArray´s?
I have Problems with this code:
where is my mistake?
Frank
when create a Array with String i write:
Code: Select all
Local wert as String[]
wert:=<String>{"Value1","Value2"}
I have Problems with this code:
Code: Select all
Local multiwert as String[2,2]
multiwert:=<String>{{ "one", "two" }, { "three", "four" }}
Code: Select all
XS9002 Parser: unexpected input '2' expecting {RBRKT, COMMA}
Frank