|
Dynamic arrays |
Top Previous Next |
|
What is translated > Types > Arrays > Dynamic arrays Delphi2C# represents Delphi dynamic arrays using normal C# arrays.
A Delphi declaration such as:
var Values: array of Integer;
is translated to:
int[] Values = default;
A C# array already provides several important properties of a Delphi dynamic array:
|
|
This page belongs to the Delphi2C# Documentation |
Delphi2C# home Content |