c#编译器如何连接字符串
可能重复:
C#是否优化了字符串文字的连接?
string foo = "bar1" + "bar2" + "bar3";
c#编译器是否内部应用了string.Concat方法?
为了可读性,最好使用+运算符。
对于文字,这相当于:
string foo = "bar1bar2bar3";
没有连接被执行 - 它们在编译时被组合成一个常量。
链接地址: http://www.djcxy.com/p/10345.html上一篇: How does the c# compiler concat strings
下一篇: Trigger Windows Service when the new record insert in to DB