Skip to content

Version 3.0.0

Compare
Choose a tag to compare
@VoSs2o0o VoSs2o0o released this 30 Jan 00:34
· 5 commits to master since this release
  • Old:
TStr('Hallo {0} {1:D4} {2} {3}').
    Params('Welt', 55, 7.7, testdate);
  • New: TStr -> FStr, and old Format readded, beause some People wants a more
    Delphi-Format like command:
FStr('Hallo {0} {1:D4} {2} {3}').
               Params('Welt', 55, 7.7, testdate);
NetFormat.TStr('Hallo {0} {1:D4} {2} {3}',
               'Welt', 55, 7.7, testdate);
  • Namespace VTools added to avoid conficts
  • Hex-Format added ("X")
  • TFormatStettings Support
  • Tests added
  • 'writeln' to Example added, to also have an console output
  • some minors changes to README