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

cs3001-1.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e7c58d7c7d82857588914f87a3d6279346c5441 (plain)
1
2
3
4
5
6
7
// cs3001-1.cs: Argument type `ulong' is not CLS-compliant
// Line: 7

using System;
[assembly:CLSCompliant (true)]

public delegate long MyDelegate (ulong arg);