repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[tests] Fix out of tree build. (#4372)
[mono-project.git]
/
samples
/
embed
/
test.cs
blob
3283006d8b313a1b210ee1f4a3fb65231e955723
1
using
System
;
2
using
System
.
Runtime
.
CompilerServices
;
3
4
class
MonoEmbed
{
5
[
MethodImplAttribute
(
MethodImplOptions
.
InternalCall
)]
6
extern static string
gimme
();
7
8
static void
Main
() {
9
Console
.
WriteLine
(
gimme
());
10
}
11
}