Unicode |
Top Previous Next |
New features since Delphi 7 > Unicode Delphi2Cpp is able to process Delphi files which uses non ANSI characters for identifiers or in comments. For example:
unit Unicode;
interface
(* Delphi2Cpp 会 用 Unicode *)
type
公司 = record 名字: string; 地址 : string; end;
implementation
// 写 公司 的 性质 (xìngzhì) procedure 写(A公司 : 公司); begin WriteLn(A公司.名字); WriteLn(A公司.地址); end;
end.
becomes to:
/* Delphi2Cpp 会 用 Unicode */
struct 公司 { System::String 名字; System::String 地址; };
---------
// 写 公司 的 性质 (xìngzhì)
void 写(公司 A公司) { WriteLn(A公司.名字); WriteLn(A公司.地址); }
|
This page belongs to the Delphi2Cpp Documentation |
Delphi2Cpp home Content |