C# 类型转换时间:2023-03-08 23:28:26 int 转换 string 转换有两种: 一种是隐式, int a = ; string b = a.ToString(); 一种是显示。 sting b=Convert.ToString();