string.Format 함수 사용
int value = 100; string result = string.Format("{0:D5}", value); MessageBox.Show(result);
https://acpi.tistory.com/122