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

cs3008-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb9bae4496d061ed1a9af147c33a8283afc6d9d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs3008.cs: Identifier 'System.Error.__ComObject' is not CLS-compliant
// Line: 8

using System;
[assembly:CLSCompliant(true)]

namespace System.Error {
	public class __ComObject : MarshalByRefObject {
		private __ComObject ()
		{
		}
	}
}