Tuesday, May 3, 2011

Automatic Properties C#

Just use code as following for automatic properties in C#. You do not need to write the  tedious way as earlier.

 public Bitmap GetWaterMark
        {
            get;
            set;
        }

No comments:

Post a Comment