I'm trying to make sense out of some stacktraces of a game I'm working on. These are generated on Mac with Mono.
at Microsoft.Xna.Framework.Game.Run () [0x0002c] in <9fdab2ac823a429cb7b8525426626ccc>:0
This tells me the method name (Microsoft.Xna.Framework.Game.Run
) and the ILOffset (0x0002c
), but I have no idea what 9fdab2ac823a429cb7b8525426626ccc
is. It's not the metadata token, it's some sort of GUID.
Could any explain to me what this number is? It's my objective to combine these pieces of information together, then together with the original PDB/MDB files restructure a proper stacktrace.
As a workaround I made my own stacktrace method which also outputs the metadata token, but I would much rather work with the native stacktraces as thrown by Mono.