Padding only applies to a string representation of a number, so your question doesn't make much sense.
If that's what you're looking for, you can use a custom number formatting string:
int x = 234;
Console.WriteLine("Value = " + x.ToString("000000"));
Value = 000234