在C#中string.Empty和String.Empty之间的区别
这个问题在这里已经有了答案:
这是相同的。 string
是类System.String
的别名 。
一些常见的别名:
object ==> System.Object
string ==> System.String
bool ==> System.Boolean
int ==> System.Int32
float ==> System.Single
double ==> System.Double
decimal ==> System.Decimal
char ==> System.Char
String.Empty
和string.Empty
是相同的。 String
是BCL类名称。 string
是C#...快捷方式,如果你愿意。 与Int32和int相同。
两者都是SAME,不同之处在于string
被认为是Blue
的keyword
(默认), System.String
是VS编辑器中Green
的Class
(默认)。
基础实施都是一样的。 换句话说,指向相同。
链接地址: http://www.djcxy.com/p/3601.html