PowerToys/Wox.Infrastructure/DebugHelper.cs
2015-02-04 23:16:41 +08:00

17 lines
300 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)
{
Debug.WriteLine(msg);
}
}
}