Debug.Print 方法

定义

将后跟行结束符的消息写入 Listeners 集合中的跟踪侦听器。

重载

Print(String)

将后跟行结束符的消息写入 Listeners 集合中的跟踪侦听器。

Print(String, Object[])

将后跟行结束符的格式化字符串写入 Listeners 集合中的跟踪侦听器。

Print(String)

Source:
Debug.cs
Source:
Debug.cs
Source:
Debug.cs

将后跟行结束符的消息写入 Listeners 集合中的跟踪侦听器。

public:
 static void Print(System::String ^ message);
[System.Diagnostics.Conditional("DEBUG")]
public static void Print (string? message);
[System.Diagnostics.Conditional("DEBUG")]
public static void Print (string message);
[<System.Diagnostics.Conditional("DEBUG")>]
static member Print : string -> unit
Public Shared Sub Print (message As String)

参数

message
String

要写入的消息。

属性

注解

默认行终止符是后跟换行符的回车符。 默认情况下,输出将写入 实例 DefaultTraceListener

适用于

Print(String, Object[])

Source:
Debug.cs
Source:
Debug.cs
Source:
Debug.cs

将后跟行结束符的格式化字符串写入 Listeners 集合中的跟踪侦听器。

public:
 static void Print(System::String ^ format, ... cli::array <System::Object ^> ^ args);
[System.Diagnostics.Conditional("DEBUG")]
public static void Print (string format, params object?[] args);
[System.Diagnostics.Conditional("DEBUG")]
public static void Print (string format, params object[] args);
[<System.Diagnostics.Conditional("DEBUG")>]
static member Print : string * obj[] -> unit
Public Shared Sub Print (format As String, ParamArray args As Object())

参数

format
String

包含与零个或多个格式项混合的文本的一个复合格式字符串,与 args 数组中的对象相对应。

args
Object[]

包含零个或多个要格式化的对象的对象数组。

属性

例外

formatnull

format 无效。

- 或 -

表示要设置格式的参数的数字小于零,或者大于等于要设置格式的指定对象的数目。

注解

此方法使用 .NET 复合格式设置功能 将对象的值转换为其文本表示形式,并将该表示形式嵌入字符串中。 默认情况下,输出将写入 实例 DefaultTraceListener

另请参阅

适用于