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

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

class Mono {
	[MethodImplAttribute(MethodImplOptions.InternalCall)]
	extern static string gimme();

	static void Main() {
		Console.WriteLine (gimme ());
	}
}