up vote 0 down vote favorite
share [g+] share [fb]

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.

link|improve this question

1  
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 S. Oct 28 '09 at 22:33
feedback

1 Answer

up vote 7 down vote accepted

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

link|improve this answer
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? – Sergio Tapia Oct 28 '09 at 22:30
1  
@Papuccino1: See blogs.msdn.com/ericlippert/archive/2009/01/26/… – Jon Skeet Oct 28 '09 at 22:34
feedback

Your Answer

 
or
required, but never shown

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