Dynamic array parameter

Top  Previous  Next

What is translated > Types > Arrays > Array parameters > Dynamic array parameter

 

A Delphi function accepts a dynamic array as parameter, if it is defined explicitly:

 

type

strarray = Array of String;

procedure Check(aSources : strarray)

begin end

->

public static void Check(string[] aSources)

{

}

 

 

 

 



This page belongs to the Delphi2C# Documentation

Delphi2C# home  Content