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

CS3005-16-lib.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae55419fd88315b140804e2d9cbb460a2a03b05f (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;
[assembly: CLSCompliantAttribute (true)]

public class CLSClass_A {
	[CLSCompliantAttribute(true)]
	virtual public bool Universal {
            get {
		return false;
            }
        }
}