Click here to Skip to main content
15,883,731 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi all,

I got an error,when am using 'var' keyword in my project, the error should be like this, but i dont know how to resolve this problem, please help me if any one known this answer , the given code is i have follow in my project...

var fromAddress = "";
var toAddress = "";


thanks to advance...
Posted

var was added in C# 3.0 (you seem to be using 2.0).
 
Share this answer
 
Comments
stellus 14-Aug-12 8:07am    
thanks for ur comments...
Nish Nishant 14-Aug-12 9:01am    
No problem, you are welcome.
Var is a .net 3.5 enhancement. You might want to check the .net version you are using.

Good luck!
 
Share this answer
 
Comments
stellus 14-Aug-12 8:07am    
thanks for ur comments...
Ramesh Kumar Barik 3-May-13 8:49am    
Thanx
Solution could be simple:
C#
string fromAddress = "";
string toAddress = "";


I understand that we try to use var when object names are quite long and complicated.
But I find silly that people try to defeat the strongly-typed orientation of the C# language by using var keyword anywhere.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900