[fpc-pascal] can inherited simply replace inherited method(param1,	param2, param3)?
    Dennis 
    dec12 at avidsoft.com.hk
       
    Thu Jan 11 17:35:30 CET 2018
    
    
  
are the 2 below equivalent?
procedure Method(param1, param2 : integer);
begin
   inherited;
end;
procedure Method(param1, param2 : integer);
begin
   inherited Method(param1, param2);
  end;
    
    
More information about the fpc-pascal
mailing list