Answers for "add leading zeroes in c#"

C#
3

add leading zeroes in c#

i.ToString().PadLeft(4, '0') - okay, but doesn't work for negative numbers
i.ToString("0000"); - explicit form
i.ToString("D4"); - short form format specifier
$"{i:0000}"; - string interpolation (C# 6.0+)
Posted by: Guest on October-08-2020

Code answers related to "add leading zeroes in c#"

C# Answers by Framework

Browse Popular Code Answers by Language