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
add comment
[mcs.git]
/
tests
/
gtest-184.cs
blob
d6ee9533a681ef90100d5beee46b9f4ffcd3ee7a
1
class
X
{
2
static void
Main
()
3
{
4
string
[]
s
=
{ "a", "b", "a" }
;
5
System
.
Array
.
FindAll
(
s
,
delegate
(
string
str
)
{ return str == "a"; }
);
6
}
7
}
8