Is TArray<T>.Create() documented somewhere? Is TArray<T>.Create() documented somewhere? arrays arrays

Is TArray<T>.Create() documented somewhere?


It's a generic version of the following, which works as far back as Delphi 2007:

type  TIntArray = array of Integer;var  MyIntArray: TIntArray;begin  MyIntArray := TIntArray.Create(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);  ...end;

It's finally a solution to being able to initialize an array without knowing the size first.