[mini]Add test for PtrToStruct<T>
[mono.git] / mcs / class / corlib / corert / Debug.cs
1 namespace System.Diagnostics.Private
2 {
3         static partial class Debug
4         {
5                 static readonly string NewLine = Environment.NewLine;
6
7                 static void ShowAssertDialog (string stackTrace, string message, string detailMessage)
8                 {
9                         // FIXME should we g_error in this case?
10                 }
11
12                 static void WriteCore (string message)
13                 {
14                         // FIXME should we g_debug in this case?
15                 }
16         }
17 }