mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
18 lines
320 B
C#
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);
|
|
}
|
|
}
|
|
}
|