4
votes
3answers
245 views
Why is the scope of if and delegates this way in c#
Inspired by this question I began wondering why the following examples are all illegal in c#:
VoidFunction t = delegate { int i = 0; };
int i = 1;
and
{
int i = 0;
}
int i = 1;
I'm just …
