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