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
add comment
[mcs.git]
/
tests
/
gtest-exmethod-05.cs
blob
8444b0d5c5dacfbf8ab2be4231053ff2b44cb239
1
2
3
namespace
A
4
{
5
public static class
Test_A
6
{
7
public static string
Test_1
(
this string
s
)
8
{
9
return
":"
;
10
}
11
}
12
}
13
14
namespace
A
15
{
16
public static partial class
Test_B
17
{
18
public static string
Test_2
(
this string
s
)
19
{
20
return
":"
;
21
}
22
}
23
}
24
25
namespace
B
26
{
27
using
A
;
28
29
public class
M
30
{
31
public static void
Main
()
32
{
33
""
.
Test_1
();
34
""
.
Test_2
();
35
}
36
}
37
}