This is a continuation of the previous question about interfaces. I got an answer that I like, but I'm not sure how to implement it in VB.NET.
Previous question:
Should this property be part of the interface of my object?
public interface Foo{
bool MyMinimallyReadOnlyPropertyThatCanAlsoBeReadWrite {get;}
}
How can I achieve this using VB.NET syntax? As far as I know, my only option is to mark the property as ReadOnly (I cannot implement the setter) or not (I have to implement the installer).
source
share