This question came up in the comments of this answer. The inability to have readonly properties was proposed as a potential reason to use fields instead of properties.
For example:
class Rectangle
{
private readonly int _width;
private readonly int _height;
public Rectangle(int width, int height)
{
_width = width;
_height = height;
}
public int Width { get { return _width; } }
public int Height { get { return _height; } }
}
But why can't you just do this?
public int Width { get; readonly set; }
Edit (clarification): You can achieve this functionality in the first example. But why can't you use the auto-implemented property shorthand to do the same thing? It would also be less messy, since you wouldn't have to directly access the fields in your constructor; all access would be through the property.
public int Width { get; readonly set; }. – Jason Jan 30 '10 at 4:05readonlymeans but just so we're clear, it means that direct assignments to a variable marked with thereadonlymodifier can only happen at the point of declaration or in the constructor. Thus,readonly setwould mean "this property can only be set in the constructor or in a object initializer." – Jason Jan 30 '10 at 5:01