示例代码:
string s = "Hello world!"; String S = "Hello world!";
string是System.String的C#中的别名。 所以理论上没有区别。 就像int与System.Int32的关系一样。
根据代码规范,建议在创建字符对象的时候使用string来定义。
C#中类似的关键字有如下一些:
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