IDL Complex Type | |
sequence | The CORBA sequence is represented by a .NET helper class. It maps to Delphi's array type. A Delphi helper class is generated to ease the conversion from Corba sequence into Delphi array or visa versa. |
// CORBA IDL |
typedef sequence< string > MyStringSeq; |
e.g. stringsHelper |
{ Delphi } -- TBD |