C# convert int to string with padding zeros?

前端 未结 13 1951

In C# I have an integer value which need to be convereted to string but it needs to add zeros before:

For Example:

int i = 1;

When

13条回答
  •  孤城傲影
    2020-11-22 07:24

    C# 6.0 style string interpolation

    int i = 1;
    var str1 = $"{i:D4}";
    var str2 = $"{i:0000}";
    

提交回复
热议问题