CSharp examples for Custom Type:Property
An automatic property declaration instructs the compiler to provide the implementation.
public class Product { public decimal CurrentPrice { get; set; } }