vote up 0 vote down star

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.

flag

It helps if you display the actual compiler message. The message that you would get if you were using var outside of a function pretty much tells the story. – Ed Swangren Oct 28 at 22:33

1 Answer

vote up 6 vote down check

Are you trying to use it for a class member? var is only valid for local variables within a function.

link|flag
1  
Aha! That would be it my friend. Any logical reason as to WHY this is made this way? I'm new to using Vars. Is it because it would be system intensive because the compiler can't infer what type of variable is being saved to it? – Papuccino1 Oct 28 at 22:30
@Papuccino1: See blogs.msdn.com/ericlippert/archive/… – Jon Skeet Oct 28 at 22:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.