小编典典

C#中的字符串与字符串[重复]

c#

示例( 注意情况 ):

string s = "Hello world!";
String s = "Hello world!";

每种使用的准则是什么?有什么区别?


阅读 407

收藏
2020-05-19

共1个答案

小编典典

string是C#中的别名System.String
因此,从技术上讲,没有区别。这就像int
System.Int32

就准则而言,通常建议string您在引用对象时使用任何时间。

例如

string place = "world";

同样,我认为String如果需要专门引用该类,通常建议使用。

例如

string greet = String.Format("Hello {0}!", place);

这是Microsoft倾向于在[示例中](https://docs.microsoft.com/en-

us/dotnet/api/system.string.format#examples)使用的样式。

似乎此区域中的指南可能已更改,因为StyleCop现在强制使用C#特定别名。

2020-05-19