C# で出力ウィンドウに書き込む

Muhammad Maisam Abbas 2024年2月16日
  1. C# の Debug.Write() メソッドを使用して、Microsoft Visual StudioIDE のデバッグウィンドウに書き込む
  2. C# の Debug.WriteLine() メソッドを使用して、Microsoft Visual StudioIDE のデバッグウィンドウに書き込む
  3. C# の Debug.Print() メソッドを使用して、Microsoft Visual StudioIDE のデバッグウィンドウに書き込む
C# で出力ウィンドウに書き込む

このチュートリアルでは、C# で Microsoft Visual StudioIDE デバッグウィンドウにデータを書き込む方法について説明します。

C# の Debug.Write() メソッドを使用して、Microsoft Visual StudioIDE のデバッグウィンドウに書き込む

C# の Debug.Write() メソッドは、Microsoft Visual StudioIDE のデバッグウィンドウに情報を書き込みます。従来の Console.Write() メソッドと同じように機能しますが、デバッグウィンドウに出力されます。C# で Debug.Write() メソッドを使用するには、System.Diagnostics 名前空間を使用する必要があります。次のコード例は、C# の Debug.Write() メソッドを使用して Microsoft Visual StudioIDE デバッグウィンドウに何かを書き込む方法を示しています。

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 StudioIDE のデバッグウィンドウに Hello, This is written in the Debug window というメッセージを出力しました。この出力は、アプリケーションをデバッグモードで実行した場合にのみデバッグウィンドウに表示されます。アプリケーションをデバッグモードで実行するには、上部の[スタート]ボタンをクリックしてアプリケーションを実行する必要があります。以下で説明する Debug.Write() メソッドのような関数がさらにいくつかあります。

C# の Debug.WriteLine() メソッドを使用して、Microsoft Visual StudioIDE のデバッグウィンドウに書き込む

C# の Debug.WriteLine() メソッドは、の Microsoft Visual Studio IDE のデバッグウィンドウに情報を書き込みます。これは、従来の Console.WriteLine() メソッドと同じように機能しますが、デバッグウィンドウに出力されます。Debug.Write() メソッドと Debug.WriteLine() メソッドの違いは、Debug.Write() メソッドは文字列をデバッグウィンドウに書き込むだけで、Debug.WriteLine() メソッドは文字列を書き込み、デバッグウィンドウで 1 行全体を取得します。次のコード例は、Debug.WriteLine() メソッドを使用して、行全体を Microsoft Visual StudioIDE デバッグウィンドウに出力する方法を示しています。

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 StudioIDE デバッグウィンドウに 2 行を出力しました。

C# の Debug.Print() メソッドを使用して、Microsoft Visual StudioIDE のデバッグウィンドウに書き込む

C# の Debug.Print() メソッドは、Microsoft Visual StudioIDE のデバッグウィンドウに情報を書き込むこともできます。また、Debug.WriteLine() メソッドと同じように、Microsoft Visual StudioIDE のデバッグウィンドウに行を出力することもできます。次の例を参照してください。

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

上記のコードでは、Microsoft Visual Studio IDE のデバッグウィンドウに Debug.Print() メソッドを使用して 2 行を出力しました。

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