I'd like to compare the state change of an instance in my program between two different breakpoints. Concretely I'd like to break at location A, get a snapshot of the current instance state, continue execution, break at location B, get another snapshot of the instance state and be able to compare the two, be it with text export and a diff tool.
I was hoping this is somehow possible with Visual Studio's debug tool tips because they can also store the last session's debug value but I haven't found a way to do so. How else can I achieve this?