What is the difference between a Field and a Property in C#?
I have read through this topic above but it is full of confusing answers with blah blah.
I want to know, in plain english, is this code below a field or property? . If it's a field, what is a property? If it's a property, what is a field?
class Door
{
public int width { get; set; }
}
Thank you very much.