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

test-cls-01.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 977d7de0146172b2888b2c0158bfa33b69dbfdd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;

[assembly: CLSCompliant (true)]

public class CLSClass
{
        public byte XX {
            get { return 5; }
        }

        public static void Main() {}
}

[CLSCompliant (false)]
public partial class C1
{
}

public partial class C1
{
	public void method (uint u)
	{
	}
}