4
Answers

Fields and properties

Mayank

Mayank

7y
531
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)