Read(Ln)/Write(Ln) routines

Top  Previous  Next

What is translated > Special RTL/VCL-functions > Read(Ln)/Write(Ln) routines

 

The Read(Ln)/Write(Ln) routines can be called in Delphi with an arbitrary number of arguments. Delphi2C# divides them into a series of function calls:

 

WriteLn('Hello ', name, '!');

 

becomes:

 

WriteLn( "Hello " ); WriteLn( name ); WriteLn( '!' );

 

 

 



This page belongs to the Delphi2C# Documentation

Delphi2C# home  Content