Как сделать тип свойства - динамический массив (Builder С++)
В Buildere нужно создать свойство с типом
динамического массива чтоб при конструирование объекта задовался объем массива
В Delphi все работает
FWeights array of double;
property Weights[Index integer] double read GetWeights write SetWeights;
SetLength(FWeights, Value);
В Builder не хочет !!!!!!!!
float *FWeights;
__property float Weights[int Index]={read=GetWeights, write=SetWeights};
FWeights = new float (Value);