PowerToys/Wox.Infrastructure/DebugHelper.cs

18 lines
320 B
C#
Raw Normal View History

2015-02-04 23:16:41 +08:00
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)
{
2015-02-05 22:20:42 +08:00
return;
2015-02-04 23:16:41 +08:00
Debug.WriteLine(msg);
}
}
}