Esempio n. 1
0
        public Form1()
        {
            InitializeComponent();

            A = new Parser();
            B = new Functions();
            ArrayList temp = B.Get_Functions();
            temp.Sort();
            for (int i = 0; i < temp.Count; i++)
            {
                listBox1.Items.Add(temp[i]);
            }

        }
Esempio n. 2
0
 public Parser()
 {
     Fun_Class = new Functions();
 }