我每秒收到大约 5 条消息。他们每个人都有一个字符串,我将它连接到一个包含所有接收到的消息的主字符串
string _masterText = "";
public void AddNewMessage(string text) // this is going to be call at least 5 times/second
{
_masterText += text;
}
这是适当的方法吗?或者我应该使用 StringBuilder,比如:
StringBuilder _masterText = new StringBuilder();
public void AddNewMessage(string text) // this is going to be call at least 5 times/second
{
_masterText.Append(text);
}
谢谢