26.02.2016, 18:33
yes, you don't create the string vector, you have this
string[1000];
and I chaged in this
new string[1000];
if you don't put "new" before the name of string, the variable don't create
string[1000];
and I chaged in this
new string[1000];
if you don't put "new" before the name of string, the variable don't create

