This must have been asked many times but I cannot find it....sorry...
Why is the following not permitted?
public string MyString = "initial value" {get; private set;}
(Visual C# Express 2010)
In VS 2017 you can:
public int Minimum { get; private set; } = 0;
public int Maximum { get; set; } = 5;