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
cosmetic
[mcs.git]
/
tests
/
gtest-431-lib-2.cs
blob
7ab3d5009c99a30ca11611b7d6873bbeb0138352
1
// Compiler options: -t:library -noconfig -r:gtest-431-lib-1.dll
2
3
using
System
;
4
5
namespace
Library
{
6
7
public class
Foo
{
8
}
9
10
public static class
Extensions
{
11
12
public static void
Bar
(
this
Foo self
)
13
{
14
Console
.
WriteLine
(
"Bar"
);
15
}
16
}
17
}