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
A method would make much more sense than a 'write only property' - even if the code did compile. There is an interesting discussion around write only proprties Here