Dear MarLicht,
Thanks for considering Aspose.Tasks.
One way is to write it in XML and then read the CurrencySettings from there.
Following is a way to write MPP file to XML, note you can write it in memory stream and parse it from there.
I will let you know after consulting with technical team, if there is a better or easy way.
C#
MPPFile
file=new MPPFile(sourceFile);
MemoryStream
ms=new MemoryStream();
file.WriteXML(ms);
file.WriteXML("c:\\out.xml"); //or onto disk
Many Thanks and Kind Regards,
Shakeel Faiz
Support Engineer
Aspose Tyumen Team