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.
public class MeineKlasse {
private static int staticProperty;
public static int StaticProperty {
get { return staticProperty; }
set { staticProperty = value; }
}
private int normalProperty;
public int NormalProperty {
get { return normalProperty; }
set { normalProperty = value; }
}
}
MeineKlasse mk = new MeineKlasse();
int normProp = mk.NormalProperty;
int statProp = MeineKlasse.StaticProperty;
Hi und willkommen im ForumSpinquantenzahl hat gesagt.:wie entscheide ich ob ich eine Methode/Variable static setze oder nicht?
string GetName()
{
return this.name;
}
bool SetName(string name)
{
try
{
this.name = name;
}
catch
{
return false;
}
return true:
}