16 lines
375 B
C#
16 lines
375 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BlubbFish.IoT.Zway.lib {
|
|
class Helper {
|
|
internal static void WriteError(String text) {
|
|
Console.ForegroundColor = ConsoleColor.Red;
|
|
Console.Error.WriteLine("ERROR: "+text);
|
|
Console.ResetColor();
|
|
}
|
|
}
|
|
}
|