Is there any way to insert an empty line in a string type variable.
string textFile = "abc";
textFile = textFile + string.Empty;
textFile = textFile + "def";
This is what I'm trying. But the string.Empty has no effect.
This also neither works textFile = textFile + "\n";
Any suggestions?