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
You can use:
int x = 1; x.ToString("0000");