c#数字怎么转换成字符串代码?

2024-12-01 07:03:57
推荐回答(1个)
回答(1):

数字是这样转换成字符的

nt number=15; string s=number.ToString()

int a = 123;
string b = a+""