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
2010-04-13 Sebastien Pouliot <sebastien@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
gtest-exmethod-04.cs
blob
48ab1aa5eba40c17d0644e7fe052257d8ce0716d
1
// Compiler options: -r:gtest-exmethod-04-lib.dll
2
3
namespace
A
4
{
5
public static class
Test
6
{
7
public static string
Test_1
(
this bool
t
)
8
{
9
return
":"
;
10
}
11
}
12
}
13
14
namespace
B
15
{
16
using
A
;
17
18
public class
M
19
{
20
public static void
Main
()
21
{
22
""
.
Test_1
();
23
}
24
}
25
}