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: 03b8b081f795e16148c8865aed4b9ca1b065f1f1 (plain)
1
2
3
4
5
6
7
8
9
10
// cs3009.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 {
}