字符串或字符串
可能重复:
在C#中字符串和字符串有什么区别
字符串和字符串有什么区别。 在C#中,这是首选?
其实string
是System.String
的别名,但是erash基本上是正确的...
下面是在这篇文章中从Jon Skeet无耻地解除的别名列表:
* object: System.Object
* string: System.String
* bool: System.Boolean
* byte: System.Byte
* sbyte: System.SByte
* short: System.Int16
* ushort: System.UInt16
* int: System.Int32
* uint: System.UInt32
* long: System.Int64
* ulong: System.UInt64
* float: System.Single
* double: System.Double
* decimal: System.Decimal
* char: System.Char
它们与此相同,字符串是String的别名。
我倾向于在调用静态方法时使用String(即,String.Format(...)或String.IsNullOrEmpty(...)。我不知道为什么,我只是这样做。
string
只是一个别名String
-他们是相同的
编辑:键入固定
链接地址: http://www.djcxy.com/p/3597.html上一篇: String or string