Code:
public void SetZustand(Boolean b)
{
Boolean= true;
}
Das macht hier keinen Sinn, oder?
Sollte wenn schon so heißen:
Code:
public void SetZustand(Boolean b) {
Zustand = b;
}
Mal abgesehen von der Tatsache, dass Getter- und Settermethoden in der Form bei C# nicht notwendig sind, da es ja auch wie in der
DL Properties gibt.