repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove debug writelines
[mcs.git]
/
tests
/
gtest-exmethod-17.cs
blob
bc14b11238d44b51877fe1525a0c8d3830568c64
1
// Compiler options: -r:gtest-exmethod-17-lib.dll
2
3
using
System
;
4
using
Testy
;
5
6
public static class
MainClass
7
{
8
public static void
Main
()
9
{
10
Object o
=
new
Object
();
11
Console
.
WriteLine
(
o
.
MyFormat
(
"hello:
{0}
:
{1}
:"
,
"there"
,
"yak"
));
12
}
13
}
14