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

cs3009-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1545a0b3fcf03231fe6d9307af0d5384defa6cc (plain)
1
2
3
4
5
6
7
8
9
10
// cs3009-2.cs: `CLSClass': base type `System.Runtime.Serialization.Formatter' is not CLS-compliant
// Line: 9

using System;
using System.Runtime.Serialization;

[assembly:CLSCompliant (true)]

public abstract class CLSClass: Formatter {
}