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
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0023-4.cs
blob
788ea5bbdc5be9e0643c1d405e98d6b17c0caece
1
// CS0023: The `.' operator cannot be applied to operand of type `anonymous method'
2
// Line: 8
3
4
using
System
;
5
class
Test
{
6
public static void
Main
(
string
[]
argv
) {
7
Console
.
WriteLine
(
"Type of anonymous block:
{0}
"
,
8
(
delegate
() {}).
GetType
());
9
}
10
}