by Murray | Nov 14, 2008 | .NET, C#, Programming
Previously to add a property to a class would involve creating a private variable to store the value as well as the get and set property accessors to expose it. private string headingFontName; public string headingFontName { get{return headingFontName;}...