C# Change format of the Day with Leading zero In DateTime - 10.06.18 | 22.11.19 - ErcanOPAK comment on Change format of the Day with Leading zero In DateTime You can use both methods: DateTime.Now.Day.ToString(“00”); DateTime.Now.ToString(“dd”); Continue Reading ..