What are the equivalents of Me and MyBase?

Me in C# is this, and MyBase in C# is base. To access normal members, just use this.memberName or base.memberName. For information about chaining constructors together, see my article on constructors.

[Author: Jon Skeet]