Calling a base class' method

Solution 1:

base is the keyword for referencing your superclass in C#. Use:

base.stuff();

Solution 2:

Use base. Like base.stuff();

Solution 3:

Just to add to the answer above, base.stuff() works, unless it's the constructor you're trying to call in which case it is called as:

class A
{
public:
    public A(){}

};

class B : A
{
    public B() : base()
    {

    }
};