C#中的string和String有区别否?

来源:互联网 发布:网络语荡秋千什么意思 编辑:程序博客网 时间:2024/05/11 14:05

没有区别。

用官方博客的话来说,String是大名,string是小名。

system.String是.net的框架中的一部分。

在C#中,使用string来简化这个啰嗦的名字。

 

看这里:

 

C# defines a number of aliases for CLR types. They may be used interchangably, and even mixed together, e.g.

string x = new System.String(' ', 5);.

 

These are the aliases defined:

 

stringSystem.StringsbyteSystem.SBytebyteSystem.ByteshortSystem.Int16ushortSystem.UInt16intSystem.Int32uintSystem.UInt32longSystem.Int64ulongSystem.UInt64charSystem.CharfloatSystem.SingledoubleSystem.DoubleboolSystem.BooleandecimalSystem.Decimal

原创粉丝点击