Slice könnte evtl. helfen, wenn du nur einen Teilbereich des Arrays brauchst.
MinIntValue(Slice(C, 10));
Delphi-Hilfe:
Zitat:
function Slice(var A: Type; Count: Integer): Pointer;
In Delphi code, use Slice to select a sub-section (slice) of an array to be passed as an open array parameter. Slice is only allowed as a parameter in a call to a procedure or function that expects an open array parameter. Slice selects the first Count elements of the array given by A to be passed as an open array parameter. A can be an open array parameter itself, allowing dynamically allocated arrays to be passed to open array parameters.