The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Debug::Print Method (String^, array<Object^>^)
.NET Framework (current version)
Writes a formatted string followed by a line terminator to the trace listeners in the Listeners collection.
Assembly: System (in System.dll)
public: [ConditionalAttribute("DEBUG")] static void Print( String^ format, ... array<Object^>^ args )
Parameters
- format
-
Type:
System::String^
A composite format string (see Remarks) that contains text intermixed with zero or more format items, which correspond to objects in the args array.
- args
-
Type:
array<System::Object^>^
An object array containing zero or more objects to format.
| Exception | Condition |
|---|---|
| ArgumentNullException | format is null. |
| FormatException | format is invalid. -or- The number that indicates an argument to format is less than zero, or greater than or equal to the number of specified objects to format. |
This method uses the of the .NET Framework to convert the value of an object to its text representation and embed that representation in a string. By default, the output is written to an instance of DefaultTraceListener.
.NET Framework
Available since 2.0
Available since 2.0
Show: