Welcome to Bangladesh Microsoft Technology Community Sign in | Join | Help

Wednesday, June 11, 2008 - Posts

C# 3.0 tips, Automatic Property

Declaring a property in C# 3.0 is super easy and super short.public class Student{  public string Name {  get; set; }}yes that's it, the framework will take care of the rest, the private variables will be automatically created and the getter
posted by Shahed | 0 Comments