Preferred Language:

Listing 18.1 - LanguageChanges\App_Code\AutomaticProperties.cs

Listing 18.1 - LanguageChanges\App_Code\AutomaticProperties.cs (C#)
Copy

public class AutomaticProperties
{
    // Automatic Properties

    public int Id { get; set; }

    public string Description { get; set; }


    // Normal Property

    private decimal _Price;

    public decimal Price
    {
        get { return _Price; }
        set { _Price = value; }
    }
}