我需要在从文本框中获取的字符串中用<br>
替换New Line。目前我使用此
string text= textbox.Text;
text.Replace(System.Environment.NewLine, "<br>");
但是当我使用MessageBox.show(text);
答案 0 :(得分:1)
string.Replace
返回一个string
。这样做:
string text= textbox.Text;
text = text.Replace(System.Environment.NewLine, "<br>"); //note the text = ...
你几乎就在那里,除了你在代码中所做的事情并没有返回string.Replace
的结果。