Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AssertWrapper.cs « ReferenceSources « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8bcd613ef22ad201e044ed8db27453887d1781c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.IO;

namespace System.Diagnostics
{
	class AssertWrapper
	{
		public static void ShowAssert(string stackTrace, StackFrame frame, string message, string detailMessage)
		{
		}
	}
}