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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
test-static-using-05.cs
blob
fbeb125e164716ab2e09159b320a3dca52e3421c
1
using static
System
.
Console
;
2
using static
System
.
Linq
.
Enumerable
;
3
4
class
Test
5
{
6
static void
Main
()
7
{
8
var
range
=
Range
(
5
,
17
);
9
WriteLine
(
range
.
Where
(
i
=>
i
%
2
==
0
).
Count
());
10
}
11
}