In a .NET application when should I use \"ReadOnly\" properties and when should I use just \"Get\". What is the difference between these two.
private readonl
As of C# 6 you can declare and initialise a 'read-only auto-property' in one line:
double FuelConsumption { get; } = 2;
You can set the value from the constructor but not other methods.