Mayank

Mayank

  • NA
  • 554
  • 2.5k

Fields and properties

May 5 2017 5:35 AM
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)