mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02: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);
|
|
}
|
|
}
|
|
}
|