A
Amendra
Hi,
Whats is the fastest object type or method that can be used for high
performance string manipulations. I have heard stringbuilder does. But does
any body know anything better.
My operation are simple.. this is what I need to do with a least performance
hit.
//_consoleMsg = new StringBuilder(message);
StringBuilder _consoleMsg = new StringBuilder();
// The below section will be called many times.
_consoleMsg.Append(message);
_consoleWindow.Console.Text = _consoleMsg.ToString();
Thanks
Amendra
Whats is the fastest object type or method that can be used for high
performance string manipulations. I have heard stringbuilder does. But does
any body know anything better.
My operation are simple.. this is what I need to do with a least performance
hit.
//_consoleMsg = new StringBuilder(message);
StringBuilder _consoleMsg = new StringBuilder();
// The below section will be called many times.
_consoleMsg.Append(message);
_consoleWindow.Console.Text = _consoleMsg.ToString();
Thanks
Amendra