C#: New line and tab characters in strings

前端 未结 6 1425
名媛妹妹
名媛妹妹 2021-01-17 07:40
StringBuilder sb = new StringBuilder();
sb.Append(\"Line 1\");
//insert new line character
//insert tab character
sb.Append(\"Line 2\");
using (StreamWriter sw = new         


        
6条回答
  •  隐瞒了意图╮
    2021-01-17 07:54

    Use:

    sb.AppendLine();
    sb.Append("\t");
    

    for better portability. Environment.NewLine may not necessarily be \n; Windows uses \r\n, for example.

提交回复
热议问题