Exemplo n.º 1
0
 public static void ErrorWriteLine()
 {
     ErrorWriteLineEvent?.Invoke("", null);
 }
Exemplo n.º 2
0
 public static void ErrorWriteLine(string format)
 {
     ErrorWriteLineEvent?.Invoke("{0}", format);
 }
Exemplo n.º 3
0
 public static void ErrorWriteLine(string format, params object[] arg)
 {
     ErrorWriteLineEvent?.Invoke(format, arg);
 }
Exemplo n.º 4
0
 /// <summary>Writes the specified string value, followed by the current line terminator, to the error output console.</summary>
 /// <param name="value">The value to write.</param>
 public static void ErrorWriteLine(string value) => ErrorWriteLineEvent?.Invoke("{0}", value);