Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Form2 f2 = new Form2();
f2.ShowDialog();
string[][] arr = f2.ArrayProperty;
public string[, ] array=new string[5,3];
Das waere dieses 'ArrayProperty'.erhardt hat gesagt.:in Form2 ein public Property deines Array erstellen.
public class Form2
{
private string[,] arr = ....;
....
public string[,] ArrayProperty
{
get{return this.arr;}
}
}
Form2 f2 = new Form2();
f2.ShowDialog();
string[,] arr = f2.ArrayProperty;