Okay, so, for a personal project I've been given the task to code a tool to make use of a custom file that was serialized from C++ using C#.
I thought of using BinaryReader
class and effectively that was the right path but as I suspected I couldn't get any useful info without the structs used to serialize the file, so I asked for them. The problem is that the info I was sent is 2 struct names containing all qint32
fields (yes they use Qt Library).
To be honest I'm completely lost with this, also I'd like to know if qint32
is Qt's int32
representation or if it's effectively different from it.
Regards.