Is there any way to pad nullable int with zeros the way you can with normal int?
the myInt.ToString("D3")
doesn't seem to work on nullale ints but for my current project I feel like I need to use nullable int
in order to get the null
value in my array instead of 0 as the default.
You have to perform that action on the value:
Example: