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

cs0647.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70f48aceb72bf637d7873bfd9a3a74ef9d5fa698 (plain)
1
2
3
4
5
6
7
8
9
// cs0647.cs: Error during emitting `System.Runtime.InteropServices.GuidAttribute' attribute. The reason is `Invalid format for Guid.Guid(string).'
// Line: 5
using System.Runtime.InteropServices;

[Guid ("aaa")]

class X {
static void Main () {}
}