Answer the question
In order to leave comments, you need to log in
How to add a line break to a line?
String^ a ;
a+="text"+'\n';
tmp->Write(a);// write to file .txt
//output : text10
Answer the question
In order to leave comments, you need to log in
I think you need to write either:
String a = "";
a+="text\n"
String a = "";
a+="text" + "\n"
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question