Ejemplo n.º 1
0
        private void button2_Click(object sender, EventArgs e)  // compile file
        {
            Filee f = new Filee();

            f.write_file_to_file_and_textbox(this);
            start_compile();
        }
Ejemplo n.º 2
0
        private void button1_Click(object sender, EventArgs e)  // compile text box
        {
            string code = txt_code.Text.ToString();
            Filee  f    = new Filee();

            f.write_string_to_file(code);
            start_compile();
        }