15.04.2015, 15:30
You must replace all the lines.
PHP код:
new string[10];
MyFunction(..)
{
new string[10];
string = "hello";
string = "hello2";
string = "hello3";
}
PHP код:
new string[10];
MyFunction(..)
{
new string1[10];
string1 = "hello";
string1 = "hello2";
string1 = "hello3";
}