I have an int in .NET/C# that I want to convert to a specifically formatted string.
If the value is 1, I want the string to be "001".
10 = "010".
116 = "116".
etc...
I'm looking around at string formatting, but so far no success. I also won't have values over 999.