在C#中string.Empty和String.Empty之间的区别

这个问题在这里已经有了答案:

  • String和C#中的字符串有什么区别? 59个答案

  • 这是相同的。 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.Emptystring.Empty是相同的。 String是BCL类名称。 string是C#...快捷方式,如果你愿意。 与Int32和int相同。


    两者都是SAME,不同之处在于string被认为是Bluekeyword (默认), System.String是VS编辑器中GreenClass (默认)。

    基础实施都是一样的。 换句话说,指向相同。

    链接地址: http://www.djcxy.com/p/3601.html

    上一篇: Difference between string.Empty and String.Empty in C#

    下一篇: In C# what is the difference: string vs String