In c++ I would do
class A
{
public:
virtual void stuff()
{
//something
}
};
class B : public A
public:
virtual void stuff()
{
//something2
A::stuff() //something
}
};
How would I do this in C#?
I’ve tried
public void stuff()
{
//something2
A.stuff(); //something
}
but that doesn’t work
baseis the keyword for referencing your superclass in C#. Use: