コード例 #1
0
 public CylinderForm()
 {
     Cyl = new Cylinder();
     InitializeComponent();
 }
コード例 #2
0
 public Cylinder(Cylinder Cyl) // конструктор копирования.
 {
     High   = Cyl.High;
     Radius = Cyl.Radius;
 }