String和C#中的string有什么区别?
字符串代表System.String,而字符串是System.String在C#中的别名-
例如
string str = "Welcome!";
这不是必需的,但通常在使用类时使用String。
string str = String.Format("Welcome! {0}!", user);
由于该字符串是System的别名。串。其他数据类型的别名为-
示例
object: System.Objectstring: 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
以上是 String和C#中的string有什么区别? 的全部内容, 来源链接: utcz.com/z/331264.html