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: 930db0951e96cc199c088d86450b8b11ffd74eb4 (plain)
1
2
3
4
5
6
7
// cs3001.cs: Argument type 'ulong' is not CLS-compliant
// Line: 7

using System;
[assembly:CLSCompliant (true)]

public delegate long MyDelegate (ulong arg);