I have seen the following code in a property declaration:
public static int Year => 2017;
I understand that the => is the lambda operator.
Just looking for a simple explanation of the difference of doing this - I am guessing you can't set the value to any other value other than 2017?
public static int Year { get; set; }