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
2010-02-20 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-140.cs
blob
1b8b5549ad6204ec32e6c5348269736e4c433f25
1
using
System
;
2
3
class
X
4
{
5
static void
Main
()
6
{
7
int
?[]
bvals
=
new int
?[]
{ null, 3, 4 }
;
8
foreach
(
long
?
x
in
bvals
)
9
Console
.
WriteLine
(
x
);
10
}
11
}