WHAT I HAVE:
Visual Basic 2019, .NET Framework 4.0+/.NET Core
MY ISSUE:
I've noticed that within a class, Me.property and MyBase.property refer to 2 very different things. What, however, if I want to access MyBase.property (or MyBase, for that matter) from outside of Me? That is, what if, given object, I want to access baseofobject.property instead of object.property, or simply get a reference to baseofobject? (And, when creating things like inherited controls, access to MyBase.property is important, and not always within the class of Me.) I figure there's a way to do that, via reflection. What is it? Please keep any answers in VB.NET and as simple as possible.