码迷,mamicode.com
首页 > Windows程序 > 详细

C# string 与 String的区别

时间:2019-02-07 16:33:06      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:get   tty   other   play   opened   one   open   技术   ring   

The string type represents a string of Unicode characters.

string is an alias for System.String in the .NET Framework.  

string is a reference type,object is a reference type too, and the others are value types.

string是C#的保留字,而String是CLR(Common Language Runtime)的类型.

 

技术图片
int x = 5;
Console.Write(x.GetType());//System.Int32
Console.ReadLine();
查看类型代码

 

C# string 与 String的区别

标签:get   tty   other   play   opened   one   open   技术   ring   

原文地址:https://www.cnblogs.com/GoldenEllipsis/p/10354883.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!