C# 操作0001”流水号+1到“0002”

string s = "0001";
            int i = Int32.Parse(s);
            i++;
            string ss = i.ToString().PadLeft(5, '0');
            Response.Write(ss);

你可能感兴趣的:(String,C#)