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

cs3014-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6159bf971ce1c72e99a532f6552efea396d82b7 (plain)
1
2
3
4
5
6
7
// cs3014-1.cs: 'D' cannot be marked as CLS compliant because the assembly is not marked as compliant
// Line: 8

using System;

[CLSCompliant (true)]
public delegate void D ();