Hello, I have a class like this:
Type tMyClass = Class
Private
(...)
Public
Constructor Create;
Procedure Blabla;
end;
Well, with this I have a Class, and I can write:
MiClase := TMyClass.Create;
MiClase.Blaba;
But How Can I override the constructor, and the procedure, and have some thing like this:
Constructor Create (Param1:String);
Procedure Blabla (Param : Integer);
I know, this you can do it in C#, but I want How can I do in FreePascal?
Thanks
/BlueIcaro