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

cs3015.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ad8fd05e6eec64aa3119ae672f0b795acb959eb (plain)
1
2
3
4
5
6
7
8
9
10
// cs3015.cs: 'CLSAttribute' has no accessible constructors which use only CLS compliant types
// Line: 7

using System;
[assembly:CLSCompliant (true)]

public class CLSAttribute: Attribute {
   public CLSAttribute(string[] array) {
   }
}