Пример #1
0
        private void hui()
        {
            try
            {
                string nazv = textBox1.Text;

                Nastr n = this;
                //  Form1.f1.ll(nazv);

                StreamReader sr1 = new StreamReader("D://arduino.txt");

                string c = null;
                string[,] mas = new string[181, 2];

                while (c != "180")
                {
                    string[] s = sr1.ReadLine().Split(';');
                    c = s[0];
                    mas[int.Parse(c), 0] = s[0];
                    mas[int.Parse(c), 1] = s[1];

                    string str = mas[int.Parse(c), 0] + mas[int.Parse(c), 1];
                    listBox1.Items.Add(str);
                }
                sr1.Close();



                // n.Close();
            }
            catch (Exception)
            {
                hui();
            }
        }
Пример #2
0
        private void настройкиToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Nastr n = new Nastr();

            n.Show();
        }