특정 문자 앞을 0으로 채우기 1값에 특정 길이까지 0으로 채우기 string fmt = "0000";int intValue = 1; intValue.ToString(fmt); //0001로 변경됨 예제 >> string fmt = "00000000.##";int intValue = 1053240; decimal decValue = 103932.52m; float sngValue = 1549230.10873992f; double dblValue = 9034521202.93217412; // Display the numbers using the ToString method. Console.WriteLine(intValue.ToString(fmt)); Console.WriteLine(decValue.ToSt..