예제 #1
0
 //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;
 }
예제 #2
0
 public MsgBoxData(boxType boxType1, string msg, int clearSecond)
 {
     this.BoxType     = boxType1;
     this.Msg         = msg;
     this.ClearSecond = clearSecond;
 }