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

18 lines
371 B
C#
Raw Normal View History

2017-04-12 09:21:29 +00:00
using System;
using MpcNET.Message;
2017-04-12 09:21:29 +00:00
2017-04-12 10:11:27 +00:00
namespace MpcNET.Test
2017-04-12 09:21:29 +00:00
{
internal static class TestOutput
2017-04-12 09:21:29 +00:00
{
internal static void WriteLine(string value)
{
Console.Out.WriteLine(value);
}
internal static void WriteLine<T>(IMpdMessage<T> message)
{
Console.Out.WriteLine(message.ToString());
}
2017-04-12 09:21:29 +00:00
}
2016-12-20 10:03:28 +00:00
}