C#에서 출력 창에 쓰기

Muhammad Maisam Abbas 2024년2월16일
  1. C#에서Debug.Write()메서드를 사용하여 Microsoft Visual Studio IDE의 디버그 창에 쓰기
  2. C#에서Debug.WriteLine()메서드를 사용하여 Microsoft Visual Studio IDE의 디버그 창에 쓰기
  3. C#에서Debug.Print()메서드를 사용하여 Microsoft Visual Studio IDE의 디버그 창에 쓰기
C#에서 출력 창에 쓰기

이 자습서에서는 C#에서 Microsoft Visual Studio IDE 디버그 창에 데이터를 쓰는 방법에 대해 설명합니다.

C#에서Debug.Write()메서드를 사용하여 Microsoft Visual Studio IDE의 디버그 창에 쓰기

C#의 Debug.Write()메서드 ([Debug.Write 메서드 (System.Diagnostics) | Microsoft Docs])는 Microsoft Visual Studio IDE의 디버그 창에 정보를 씁니다. 기존의Console.Write()메소드처럼 작동하지만 디버그 창에 인쇄합니다. C#에서Debug.Write()메서드를 사용하려면System.Diagnostics네임 스페이스를 사용해야합니다. 다음 코드 예제는 C#의Debug.Write()메서드를 사용하여 Microsoft Visual Studio IDE 디버그 창에 무언가를 작성하는 방법을 보여줍니다.

using System.Diagnostics;
namespace write_to_debug_window {
  class Program {
    static void Main(string[] args) {
      Debug.Write("Hello, This is written in the Debug window");
    }
  }
}

디버그 창 출력 :

Hello, This is written in the Debug window

위의 코드에서 Microsoft Visual Studio IDE 디버그 창에Hello, This is written in the Debug window메시지를 인쇄했습니다. 이 출력은 디버그 모드에서 애플리케이션을 실행하는 경우에만 디버그 창에 나타납니다. 디버그 모드에서 애플리케이션을 실행하려면 상단의Start버튼을 클릭하여 애플리케이션을 실행해야합니다. 아래에서 설명하는Debug.Write()메서드와 같은 몇 가지 함수가 더 있습니다.

C#에서Debug.WriteLine()메서드를 사용하여 Microsoft Visual Studio IDE의 디버그 창에 쓰기

C#의 Debug.WriteLine()메서드는 Microsoft Visual Studio IDE의 디버그 창에 정보를 기록합니다. 기존의Console.WriteLine()메서드와 동일하게 작동하지만 디버그 창에 인쇄됩니다. Debug.Write()메소드와Debug.WriteLine()메소드의 차이점은Debug.Write()메소드는 디버그 창에만 문자열을 쓰고Debug.WriteLine()메소드는 문자열을 작성하고 디버그 창에서 전체 행을 사용합니다. 다음 코드 예제는Debug.WriteLine()메서드를 사용하여 Microsoft Visual Studio IDE 디버그 창에 전체 행을 인쇄하는 방법을 보여줍니다.

using System.Diagnostics;
namespace write_to_debug_window {
  class Program {
    static void Main(string[] args) {
      Debug.WriteLine("This is line1 in the Debug window");
      Debug.WriteLine("This is line2 in the Debug window");
    }
  }
}

디버그 창 출력 :

This is line1 in the Debug window
This is line2 in the Debug window

위의 코드에서Debug.WriteLine()메서드를 사용하여 Microsoft Visual Studio IDE 디버그 창에 두 줄을 인쇄했습니다.

C#에서Debug.Print()메서드를 사용하여 Microsoft Visual Studio IDE의 디버그 창에 쓰기

C#의 Debug.Print()메서드는 Microsoft Visual Studio IDE의 디버그 창에 정보를 쓸 수도 있습니다. 또한Debug.WriteLine()메소드처럼 Microsoft Visual Studio IDE 디버그 창에 행을 인쇄 할 수 있습니다. 다음 예를 참조하십시오.

using System.Diagnostics;
namespace write_to_debug_window {
  class Program {
    static void Main(string[] args) {
      Debug.Print("This is the print method");
      Debug.Print("This is the 2nd print method");
    }
  }
}

디버그 창 출력 :

This is the print method
This is the 2nd print method

위의 코드에서Debug.Print()메서드를 사용하여 Microsoft Visual Studio IDE 디버그 창에 두 줄을 인쇄했습니다.

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn