7a7b21675c78b75258d96c474126e676d3c89a41
[mono.git] / mcs / class / corlib / corert / Debug.cs
1 namespace System.Diagnostics.Private
2 {
3         static class Debug
4         {
5                 public static void Assert (bool condition)
6                 {
7                 }
8
9                 public static void Assert (bool condition, string message)
10                 {
11                 }
12
13                 public static void Fail (string message)
14                 {
15                 }
16         }
17 }