Possible Duplicate:
What’s the difference between encapsulating a private member as a property and defining a property without a private member?
In C#, usually when I define a property I declare and implement a single line or more for get and set. e.g.
public bool IsThere
{
get { return _isThere; }
set { _isThere = value;}
}
now what does this mean?
public bool IsThere
{
get;
set;
}