c#中如何将int i=1;转化成string s="0001"时间:2023-01-02 14:50:29三种方式: 1.string s = i.ToString("0000"); 2.i.ToString().PadLeft(4, '0'); 3.i.ToString("d4");