Exemplo n.º 1
0
        public Form3(ref DataLife d)
        {
            Console.WriteLine("2 DataLife =" + d);
            Console.WriteLine("2 DataLife =" + d.getT());

            ddd = new DataLife(d);

            MaximizeBox = false;

            FormBorderStyle = FormBorderStyle.FixedSingle;

            this.Load += new System.EventHandler(this.Form3_Load);

            InitializeComponent();
        }
Exemplo n.º 2
0
        public Form1()
        {
            d = new DataLife(21, 21, 300);

            InitializeComponent();
        }
Exemplo n.º 3
0
 public DataLife(DataLife ddd)
 {
     N = ddd.N;
     M = ddd.M;
     T = ddd.T;
 }