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
2008-08-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-443.cs
blob
f3e78546abb6bb0dcdfb87be0e251a1a55302e74
1
// Compiler options: -r:test-443-lib.dll
2
3
using
Test
;
4
5
class
C
{
6
public
C
(
ITopic it
) {
7
string
i
=
it
.
get_Title
(
2
,
3
);
8
it
.
set_Title
(
1
,
2
,
false
,
"bb"
);
9
}
10
11
public static void
Main
() {}
12
}