Example:
InnerException: StackTrace (generated): SP IP Function 003D8E9C 03B21BD7 Something!Blah.Blah.FunctionName(System.String)+0xa8
What does the +0xa8 part indicate?
Example:
InnerException: StackTrace (generated): SP IP Function 003D8E9C 03B21BD7 Something!Blah.Blah.FunctionName(System.String)+0xa8
What does the +0xa8 part indicate?
It's the offset into the code, so it's not the very first instruction in the method, rather the instruction at offset 0xa8 or 0x10 inside the method, counted from the entry point.