.pdb files can be sent to the client to get an exact stack trace. Without .pdb, all your stack traces contain only memory addresses, and itโs a pain to work โmanuallyโ that matches those addresses. However, if you have .pdb files, the debugger can restore the stack trace with characters, and this will make life easier.
Also, sometimes you cannot reproduce the problem on your computer, and the only way to see what is wrong is to debug the client machine. It depends on your specific relationship with the client, regardless of whether it is possible ...
source share