0

Help convert type double C# to Pascal real. The problem is that the types occupy different amount of bytes (8 and 6, respectively).

Brian Rasmussen
  • 114,645
  • 34
  • 221
  • 317

1 Answers1

1

Real48 is already a legacy type since Delphi 3 or 4. Use double as much as possible in your delphi code.

Marco van de Voort
  • 25,628
  • 5
  • 56
  • 89