Unicode

Top  Previous  Next

New features since Delphi 7 > Unicode

Delphi2Cpp II is able to process Delphi files which uses non ANSI characters for identifiers or in comments. For example:

 

 

 

unit Unicode;

 

interface

 

 

(* Delphi2Cpp II 会 用 Unicode *)

 

type 

 

  公司 = record

    名字: string;

    地址 : string;

  end; 

 

 

implementation 

 

  // 写 公司 的 性质 (xìngzhì)

  procedure 写(A公司 : 公司);

  begin

    WriteLn(A公司.名字);

    WriteLn(A公司.地址);

  end; 

 

 

 

end.

 

becomes to:

 

 

/* Delphi2Cpp II 会 用 Unicode */

 

struct 公司

{

  System::String 名字;

  System::String 地址;

};

 

---------

 

 

  // 写 公司 的 性质 (xìngzhì)

 

void 写(公司 A公司)

{

  WriteLn(A公司.名字);

  WriteLn(A公司.地址);

}

 

 

 

 



This page belongs to the DelphiXE2Cpp11 Documentation

DelphiXE2Cpp11 home  Content