4
Answers

Fields and properties

Photo of Mayank

Mayank

8y
577
1
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?

Answers (4)