반응형 C# method exception1 c# throw Exception 예외처리 안한 함수(function)C# throw exception 아래와 같은 메소드가 있다고 합시다.12345678910private void test1(){ test2();} private void test2(){ string s = "asdb"; int i = Convert.toInt32(s);}cs java 에서는 private void test2() throw exception 같이 코딩을 해야겠지만, C#은 그렇지 않습니다. 결론은, method 는 기본으로 throw exception 합니다. 123456789101112private void main() // main 이라 가정하고.{ try{ test1(); }catch(Exception ex){ MessageBox.Show(ex.me.. 2019. 1. 27. 이전 1 다음 728x90 반응형