i'm making a programme in which there is a button to save new text file to disk, i make a programme but it not work help me what is the error i cant understand this
private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e) {
String^ add=textBox2->Text;
String^ final=add+".txt";
ofstream save(final);
save.close();
}