본문 바로가기
프로그래머/프로그래밍

윈폼 출력창에 디버깅 출력 Debug.WriteLine()

by plog 2021. 12. 11.

윈폼 프로젝트에서 디버깅 출력하기 

Debug.WriteLine("message");

 

예제

public void Work(string workerName)
{
	Debug.WriteLine("Start");
    string name = workerName;

    for (int i = 0; i < 50; i++)
    {
        Debug.WriteLine($"{i}, {name}");
    }
}

'프로그래머 > 프로그래밍' 카테고리의 다른 글

DynamoDB의 PartiQL Select  (0) 2022.05.11
MariaDB 쿼리 계획(실행 계획)  (0) 2022.01.27
Visual Studio 주석 단축키  (0) 2021.11.24
DynamoDB for .net  (0) 2021.11.16
AWS Lambda 개발 셋팅  (0) 2021.11.11

댓글