且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在事情发生后向TextBox添加新行

更新时间:2023-12-04 13:35:58

附加 Environment.NewLine 然后 use.innertext

What i am after is every use create a new line in the multiline textbox i have looked on line and cant see anything love it if you could help me :)

foreach (htmlelement use in uses)
{
string u = use.getattribute("h");
if (u.contains("/use/"))
{
results.appendtext(use.innertext);
}

Append a Environment.NewLine and then the use.innertext.