IOutput.WriteFormatLine Method
Namespace: NextDesign.Desktop
Description
Adds a string in the specified format to the specified category of the output.
Note that the replacement of the format string conforms to C#'s String.Format.
Arguments
Name | Type | Description |
---|---|---|
category | string | Category Cannot be null. |
format | string | Format string Cannot be null. Replaces the range of substitutions (such as "{0}") in the string with the string representation of the object given by parameter and outputs it. |
parameter | object[] | Array of replacement objects null cannot be specified. |
Return value
- void
Exceptions
Name | Exception class | Description |
---|---|---|
Invalid argument | ExtensionArgumentException | If null is specified for category, format, or parameter |