int MyProperty { set; }
What\'s the idea for using only setter on property? If we set one property with some value, I guess it\'s very likely to read t
You normally don't create a property like this. As you say, it doesn't have much value.
If you really want to allow only setting a certain value without reading it, then provide a method. That's cleaner.