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
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
gcs0103.cs
blob
af83bbff986dd9bfcdf2803daba33b603890e7c8
1
// CS0103: The name `Console' does not exist in the current context
2
// Line: 10
3
4
5
class
C
6
{
7
delegate void
WithOutParam
(
string value
);
8
9
static void
Main
()
10
{
11
WithOutParam o
= (
s
) =>
Console
.
WriteLine
();
12
}
13
}