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

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

public class Blah {

	[MethodImpl (MethodImplOptions.InternalCall)]
	private extern void Start_internal(IntPtr handle);

	public static int Main ()
	{
		return 0;
	}
}