본문 바로가기

Program/C

예외처리 try{} catch{}

using System;

using System.Collections.Generic;

using System.Text;

 

namespace ConsoleApplication1

{

    public class Program

    {

        public static int Main(string[] args)

        {

            int i = 0;

            int k = 0;

            try

            {

                Console.WriteLine(k / i);

                //

                //

                //

            }

            catch(Exception e){

                Console.WriteLine(e.Message);

                Console.WriteLine(e.StackTrace);

                Console.WriteLine( "Error발생");

            }

            Console.WriteLine(k / i);

            return 0;

        }

    }

사용자 삽입 이미지


사용자 삽입 이미지

'Program > C' 카테고리의 다른 글

C기초  (0) 2007.10.30
Console.WriteLine  (0) 2007.10.30