using System; public class Example { public static void Main() { string[] values = { "+13230", "-0", "1,390,146", "$190,235,421,127", "0xFA1B", "163042", "-10", "007", "2147483647", "2147483648", "16e07", "134985.0", "-12034", "-2147483648", "-2147483649" }; foreach (string value in values) { try { int number = Int32.Parse(value); Console.WriteLine("{0} --> {1}", value, number); } catch (FormatException) { Console.WriteLine("{0}: Bad Format", value); } catch (OverflowException) { Console.WriteLine("{0}: Overflow", value); } } } } // The example displays the following output: // +13230 --> 13230 // -0 --> 0 // 1,390,146: Bad Format // $190,235,421,127: Bad Format // 0xFA1B: Bad Format // 163042 --> 163042 // -10 --> -10 // 007 --> 7 // 2147483647 --> 2147483647 // 2147483648: Overflow // 16e07: Bad Format // 134985.0: Bad Format // -12034 --> -12034 // -2147483648 --> -2147483648 // -2147483649: Overflow
반응형
'프로그래밍(Programming) > C#' 카테고리의 다른 글
Func 과 Aciton 델리게이트, delegate 와 event (0) | 2018.04.13 |
---|---|
숫자 앞에 0으로 채우기 "00000.##" (0) | 2018.03.30 |
IEnumerator 인터페이스 와 MoveNext (0) | 2017.12.18 |
Automatic Property 자동으로 구현된 속성 (0) | 2017.09.19 |
int? , Nullable 타입 (0) | 2017.09.19 |