Hello,
Into a UWP app, I use syncfusion's PDF system to write a PDF. I am unable to correctly write the EURO symbol... If I use the standard way (ToString("C")) it works with $ but not with euro. In order to write the euro symbol I can use a trick :
ToString("0.00 ")+"\u0080"
But I does not like this trick, because I loose the possibility to use the system currency ($ in US, euro in France)...
Do you have a solution to correctly display this symbol ?
Thanks !