기억하자정보
디버그(debug) 창에 메시지 출력 : C#
LANIAN
2017. 3. 24. 14:20
using System.Diagnostics;
static class Program { static void Main() { Debug.WriteLine("Message is written"); } }
디버그창에 메시지를 출력하여 내용을 확인하는 방법입니다
프로그램 작성시 관련내용을 출력하여 확인할 때 사용하시면 됩니다