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
/
test-686.cs
blob
69fda793994dd895b96a7daa72d935c9ec6ddc1d
1
using
System
;
2
3
class
Test
4
{
5
public static void
Main
()
6
{
7
string
s
=
"test me"
;
8
foreach
(
char
c
in
s
)
9
Console
.
WriteLine
(
c
);
10
11
Foo
();
12
}
13
14
static void
Foo
()
15
{
16
string
[,]
s
=
new string
[,]
{ { "a", "b" }
,
{ "c", "d" }
};
17
foreach
(
string
c
in
s
)
18
Console
.
WriteLine
(
c
[
0
]);
19
}
20
}