Files
linux-packaging-mono/mcs/class/corlib/corert/Debug.cs

14 lines
190 B
C#
Raw Normal View History

namespace System.Diagnostics.Private
{
static class Debug
{
public static void Assert (bool condition)
{
}
public static void Assert (bool condition, string message)
{
}
}
}