1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2024-09-16 05:30:09 +00:00
MpcNET/Sources/MpcNET.Test/TestOutput.cs
2018-03-02 12:14:26 +01:00

18 lines
371 B
C#

using System;
using MpcNET.Message;
namespace MpcNET.Test
{
internal static class TestOutput
{
internal static void WriteLine(string value)
{
Console.Out.WriteLine(value);
}
internal static void WriteLine<T>(IMpdMessage<T> message)
{
Console.Out.WriteLine(message.ToString());
}
}
}