C# 中的 String 和 string 有什么区别?
String 表示 System.String,而 string 是 C# 中的 System.String 别名 −
例如
string str = "Welcome!";
这并非必需,但一般情况下在使用类时采用 String。
string str = String.Format("Welcome! {0}!", user);
由于 string 是 System 的别名。String。其他数据类型的别名有 −
示例
object: System.Object string: System.String bool: System.Boolean float: System.Single double: System.Double decimal: System.Decimal byte: System.Byte sbyte: System.SByte short: System.Int16 ushort: System.UInt16 int: System.Int32 uint: System.UInt32 long: System.Int64 ulong: System.UInt64 char: System.Char
广告