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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
gtest-419.cs
blob
4d20d23d6bd8bf73543b358a58bf84e300eda67b
1
using
System
;
2
3
class
Program
4
{
5
public static int
Main
()
6
{
7
int
?
i
= ((
int
?) -
4
);
8
int
?
i2
= (
int
?) +
4
;
9
object
o
= (
object
) (
int
?)
42
;
10
11
return
(
bool
)
Test
(
"True"
) ==
true
?
0
:
1
;
12
}
13
14
static object
Test
(
string
s
)
15
{
16
return
(!
string
.
IsNullOrEmpty
(
s
)) ? (
bool
?)
bool
.
Parse
(
s
) :
null
;
17
}
18
}