According to this post the code below should compile, while it is not.
class Base
protected m_x as integer
end class
class Derived1
inherits Base
public sub Foo(other as Base)
other.m_x = 2
end sub
end class
class Derived2
inherits Base
end class
What could be wrong with it? I just created a new VB.NET console project and copypasted the code.
The error message I got is: 'SampleProject.Base.m_x' is not accessible in this context because it is 'Protected'. Have checked on different .NET framework versions (2.0, 3.0 and 3.5).