本文介绍了String.Concat vs String.Format的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道使用字符串是一种罪过,让我们跳过那部分...
哪一个更快,占用的内存更少?
String.Format(" SomeValue =''{0}''",m_Value);
或
String .Concat(" SomeValue =''",m_Value,"''");
- ramadu
I know its a sin to use strings, lets skip that part...
Which of these is faster and uses less memory?
String.Format("SomeValue=''{0}''", m_Value);
or
String.Concat("SomeValue=''", m_Value, "''");
- ramadu
推荐答案
这篇关于String.Concat vs String.Format的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!