save_proxy string = textBox.Text;
Save Main = new Main();
save.save(save_proxy);
So data is transmitted to the class, but how back?
You can create a global variable in the class and then access it and recover data, but not correctly as far as I know.
Need the class to transfer data to the main thread.