[ PrintfFormat ]
public void printerr (string format, ...)
Outputs a formatted message via the error message handler.
The default handler simply outputs the message to stderr, without appending a trailing new-line character. Typically, format
should end with its own new-line character.
printerr should not be used from within libraries. Instead log should be used, or the convenience functions message, warning and error.
format |
the message format. See the printf documentation |
... |
the parameters to insert into the format string |