Neslib.MultiPrecision icon indicating copy to clipboard operation
Neslib.MultiPrecision copied to clipboard

Cannot call ToString successfully

Open chuacw opened this issue 9 months ago • 0 comments

The following code throws an exception:

uses System.SysUtils, Neslib.MultiPrecision;
var
  LDD: DoubleDouble;
  LValue: string;
begin
   LDD := DoubleDouble(Double.MaxValue);
   LDD := LDD+1;
   LValue := LDD.ToString(TMPFloatFormat.Fixed);
end;

chuacw avatar Apr 10 '25 10:04 chuacw