P
proxyuser
If I write simply this with no other references to i, I get a compiler
warning.
int i = 1;
The variable 'i' is assigned but its value is never used.
This does not give an error:
string s = String.Empty;
This does:
string s = "";
This does:
object o;
This does not:
object o = new object();
This does:
bool b = false;
Anyone know what the deal is?
warning.
int i = 1;
The variable 'i' is assigned but its value is never used.
This does not give an error:
string s = String.Empty;
This does:
string s = "";
This does:
object o;
This does not:
object o = new object();
This does:
bool b = false;
Anyone know what the deal is?