mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
14 lines
234 B
C#
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);
|
|
}
|
|
}
|
|
}
|