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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-114.cs
blob
36925d310be5d29c1b6a0034c0ef25cff302f0cc
1
using
System
;
2
3
class
MyClass
{
4
5
delegate bool
IsAnything
(
Char c
);
6
7
public static int
Main
() {
8
IsAnything validDigit
;
9
validDigit
=
new
IsAnything
(
Char
.
IsDigit
);
10
11
return
0
;
12
}
13
}