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
[System] Tweak socket test
[mono-project.git]
/
mono
/
tests
/
exception7.cs
blob
a730dbbed56838221839da6cb2d81afdad3844d4
1
using
System
;
2
3
public class
Test
{
4
public static int
Main
() {
5
try
{
6
Console
.
WriteLine
(
"In try"
);
7
throw new
Exception
();
8
//return(1);
9
}
10
catch
(
Exception e
) {
11
Console
.
WriteLine
(
"In catch"
);
12
return
(
0
);
13
}
14
finally
{
15
Console
.
WriteLine
(
"In finally"
);
16
}
17
return
2
;
18
}
19
}
20