All I know about #pragma checksum
is this:
The compiler uses a checksum for a file and inserts it in a .pdb file, so the debugger can compare the file it is debugging to the source file. With
#pragma checksum
we can define a customized checksum for a source file.
When should we use a customized checksum? and when is #pragma checksum
actually useful?
What is changed when we use a #pragma checksum
? Does it provide a better debugging experience?