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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
tests
/
gtest-184.cs
blob
8068e346e23ec15a225640e47c99c0a95b10fae0
1
class
X
{
2
public static void
Main
()
3
{
4
string
[]
s
=
{ "a", "b", "a" }
;
5
System
.
Array
.
FindAll
(
s
,
delegate
(
string
str
)
{ return str == "a"; }
);
6
}
7
}
8