readonly keyword
- by nmarun
This is something new that I learned about the readonly keyword. Have a look at the following class: 1: public class MyClass
2: {
3: public string Name { get; set; }
4: public int Age { get; set; }
5:
6: private readonly double Delta;
7:
8: public…