C# 예외 처리(try~catch, exception, throw, finally)
try ~ catch 키워드 - 프로그램의 안정성 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _111_try_catch { class Program { static void Main(string[] args) { int inputNum = 0; bool isCorrect = false; while(!isCorrect) { Console.WriteLine("입력문자 : "); string readStr = Console.ReadLine(); try { inputNum = int.Parse(readStr); isCorrect =..