//Tilføjer alle values public Box(double højde, double bredde, double længde, boxType box) { Højde = højde; Bredde = bredde; Længde = længde; Størrelse = box; Volume = højde * bredde * længde; }
public MsgBoxData(boxType boxType1, string msg, int clearSecond) { this.BoxType = boxType1; this.Msg = msg; this.ClearSecond = clearSecond; }