I was got a problem with formating a Number class to string. Separator in PDF should be plways "."
But in exist code, it depends on locality.
I added new method into class Number
public override string ToString ()
{
return Convert.ToString( this.Value, CultureInfo.InvariantCulture ) + " ";
}.
2003-11-20 11:21:36 UTC in PDF.NET