class myClass { int age; public int Age { get{return age;} set{age = value;} }
Versus
class myClass { public int Age{get; set;} }
What's the difference between these two? Are they both the same?