Lets say I have some inheritance going on; I have a “Base” class and a “Derived” class.
public Base obj;
...
...
...
obj = new Derived();
obj.SomeMethod(<parameters>);
SomeMethod exists in both classes, but takes different parameters. I want to call the derived SomeMethod for obj.
I’m trying to implement something that uses this and can’t get it to work : ( “No overload for method SomeMethod takes 2 arguments”. It looks like the method in the derived class can’t be seen at all.