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

MonoDummy.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d79023ee4497300135e60dd42dc8855d1e8c8be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.MonoDummy.cs
//
// Author:
//   Dietmar Maurer (dietmar@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

namespace System {

	public class MonoDummy {

		public MonoDummy ()
		{
			throw new ExecutionEngineException ();
		}
		
	}
}