public string[] LandsKodComboBox(string[] dendei1, string[] dendei2)
{
string[] dendei1 = new string[5];
string[] dendei2 = new string[7];
//assign the array
dendei1[2]="hello";
//etc etc....
return dendei1, dendei2;
}
why cant i return both of them? or how do you write?
thank you
Dendei.