mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
12 lines
210 B
C#
12 lines
210 B
C#
|
using System;
|
|||
|
|
|||
|
namespace LibMpcTest
|
|||
|
{
|
|||
|
internal class TestOutput
|
|||
|
{
|
|||
|
internal static void WriteLine(string value)
|
|||
|
{
|
|||
|
Console.Out.WriteLine(value);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|