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
remove NotWorking
[mcs.git]
/
tests
/
gtest-141.cs
blob
d94be3e0103971e62906ca118bd31d9365b170ea
1
using
System
;
2
3
class
X
4
{
5
static void
Main
()
6
{
7
int
?[]
bvals
=
new int
? []
{ null, 3, 4 }
;
8
foreach
(
int
?
x
in
bvals
)
9
Console
.
WriteLine
(
x
);
10
}
11
}