I have following code
using(some code)
{
var b = ....
}
var b = ...
Erorr:
A local variable named 'b' cannot be declared in this scope because it would give a different meaning to 'b', which is already used in a 'child' scope to denote something else
Ok, editing
using(some code)
{
var b = ....
}
b = ...
Error:
The name 'b' does not exist in the current context