Hi If I extend a class and in the subclass override a function of the base class I can call the original base class function using super.functionname
But what do I do if this function excepts variable number of arguments ?
How do I pass all the arguments present in the arguments array to the
super function?
public override function a(){
super.a( // here I want to pass ALL the arguments that were passed
// to this function
Regards
Devdatta

