Example #1
0
        private void Go_Click(object sender, EventArgs e)
        {
            //1
            Label label4 = new Label
            {
                AutoSize = true,
                Font     = new System.Drawing.Font("Arial Narrow", 15.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))),
                Location = new System.Drawing.Point(12, 50),
                Name     = "label3",
                Size     = new System.Drawing.Size(108, 22),
                TabIndex = 0,
                Text     = "Результат:"
            };

            this.Controls.Add(label4);
            List <double> list  = UtilsW.StringToList <double>(input.Text, ' ');
            Eight         logic = new Eight(list);
            List <double> ll    = logic.ListReverse();

            label2.Text = UtilsW.ListtoString <double>(ll, ' ');
        }