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
* ComboBox.cs: Send the mouse down to the scrollbar.
[mono-project.git]
/
mono
/
tests
/
vtype.cs
blob
2a2dc91536a33e9981ce74973f030b6729a657c0
1
using
System
;
2
3
namespace
T
{
4
5
public class
Test
{
6
7
public static int
Main
() {
8
int
i
=
12
;
9
object
o
=
i
;
10
11
if
(
i
.
ToString
() !=
"12"
)
12
return
1
;
13
if
(((
Int32
)
o
).
ToString
() !=
"12"
)
14
return
2
;
15
if
(
o
.
ToString
() !=
"12"
)
16
return
3
;
17
return
0
;
18
}
19
}
20
}