I have this version:
Microsoft Visual C# 2008 Express Edition
Using this function:
var X = new WebClient();
Var isn't recognized by my IDE. Thanks.
I have this version:
Microsoft Visual C# 2008 Express Edition
Using this function:
var X = new WebClient();
Var isn't recognized by my IDE. Thanks.
Are you trying to use it for a class member? var
is only valid for local variables within a function.