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
bring Mono Security to monotouch
[mcs.git]
/
tests
/
gtest-exmethod-17-lib.cs
blob
8938393d1e5f80455eecc94e569e8acb1bcd60ad
1
// Compiler options: -t:library
2
3
using
System
;
4
5
namespace
Testy
6
{
7
public static class
TestExtensions
8
{
9
public static string
MyFormat
(
this
Object junk
,
10
string
fmt
,
params object
[]
args
)
11
{
12
return
String
.
Format
(
fmt
,
args
);
13
}
14
}
15
}