PowerToys/Wox.Infrastructure/DebugHelper.cs
2015-10-30 23:23:01 +00:00

14 lines
234 B
C#

using System.Diagnostics;
namespace Wox.Infrastructure
{
public static class DebugHelper
{
public static void WriteLine(string msg)
{
return;
Debug.WriteLine(msg);
}
}
}