G
Guest
Maybe this is a stupid question but I didn't find the answer.
I've to work with fixed length string:
string[] sName = new string[15];
the following instruction give back a compiler error:
sName="test";
"impossible to convert type string into string[]"
How can I set a string to string[] ?
Thank you in advance
Keven Corazza
I've to work with fixed length string:
string[] sName = new string[15];
the following instruction give back a compiler error:
sName="test";
"impossible to convert type string into string[]"
How can I set a string to string[] ?
Thank you in advance
Keven Corazza