PowerToys/Wox.Infrastructure/DebugHelper.cs
2015-02-05 22:20:42 +08:00

18 lines
320 B
C#

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