I am PISSED…  Why doesn’t VB 9 have automatic properties???  VB has always been about simplicity and speed of coding.  How can you give that feature to C# on VB…  :(

If you don’t know what I am talking about automatic properties in C#, let’s you do this:

        public string FirstName {
            
get; set;
        
}

Instead of this:

        private string _firstName;
       
 
        public string 
FirstName {

            get {
                
return _firstName;
            
}
            
set {
                _firstName 
= value;
            
}
        }

 

This entry was posted on Saturday, July 28th, 2007 at 1:17 pm and is filed under Random. You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.