You can access private properties if you use this. to access them.
class Base {
private string m_test = "hello world";
}
class Foo : Base {
void Something() {
print(this.m_test); // works
print(m_test); // illegal access
}
}
void Main() {
Foo().Something();
}
You can access private properties if you use
this.to access them.