http://isenthil.myopenid.com/
Name: http://isenthil.myopenid.com/
Score: 3,608.09
Last Seen: 9 days, 14 hours, 56 minutes ago
Member Since: 17 April, 2010
DotNetShoutout
atom rss
6
Shouts

Auto Implemented Properties in .NET

published 1115 days, 7 hours, 48 minutes ago posted by http://isenthil.myopenid.com/http://isenthil.myopenid.com/ 1117 days, 10 hours, 19 minutes ago
Monday, May 03, 2010 11:17:12 AM GMT Saturday, May 01, 2010 8:46:26 AM GMT
If we want to create a class with a bunch of public properties , we generally do it by storing the value of the properties in private field. Eg : Class Student { private int id; public int ID { get { return id; } set { id=value; } } } If this is all we ... (more)
category: How To | clicked: 1 | 2 comments | | source: www.ginktage.com
tags: C#, Microsoft