要格式化字符串,请首先设置值-
int value = 55;
现在要格式化整数,请使用ToString,假设我们需要将其设置为三个位置-
value.ToString("000");
以下是完整的代码-
using System; public class Program { public static void Main() { int value = 55; string res = value.ToString("000"); Console.WriteLine(res); } }
输出结果
055