User1253338400 posted
Hi I have the following:
a definition as follows:
public abstract class MyBase
{
public abstract void MyFunction1(Param1 parameter, DataRow Row, long lineNo)
etc etc
}
in an abstract class.
I call this as follows
MyFunction1(param, row, LineNo)
How can i give this an optional parameter.
Also , there are many other classes that inherit from the base class above (MyBase) and make use of the MyFunction1 call, so does that mean I have to give all those methods optional parameters as well ?
Thanks