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: 3283006d8b313a1b210ee1f4a3fb65231e955723 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;
using System.Runtime.CompilerServices;

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

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