Marco van de Voort escreveu:
In our previous episode, dmitry boyarintsev said:
Does Embarcadero offer 2 different way of cross-platform development.
Delphi Prism (XDelphi?) with its Mono .Net based development and
Does Prism explicitely target Mono, or is it merely possible to DIY?
Hi,
the following code behaves different between Delphi and Free Pascal:
{$APPTYPE CONSOLE}
{$IFDEF FPC}
{$MODE delphi}
{$ENDIF}
uses
Classes;
type TFoo = class(TStringList)
public
constructor Create;
end;
constructor TFoo.Create;
begin
inherited Create;
{$IFDEF FPC}
// Is needed by Fre
On Wed, 7 Apr 2010, Michael Müller wrote:
Hi,
the following code behaves different between Delphi and Free Pascal:
{$APPTYPE CONSOLE}
{$IFDEF FPC}
{$MODE delphi}
{$ENDIF}
uses
Classes;
type TFoo = class(TStringList)
public
constructor Create;
end;
constructor TFoo.Create;
begin
inherited