Just want to know when to practice normal property declaration and auto-implemented properties
private instance variable and property:
private string apple;
public string Apple
{
get{return apple;}
set{apple=value;}
}
The auto-implemented properties:
public string Apple {get; set;}
Want to know when to use which.