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

cs0647-12.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e811656303f79eb59c84310561510bb20dbc0fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Runtime.InteropServices;
using System;

class X {
	[DllImport ("")]
	extern static void Blah ();

    static void Main (string [] args)
    {
    }

}