what is the difference between (private pdb symbols) and (pdb symbols)?
+2
A:
(private pdb symbols) are the full symbols with all the details.
(pdb symbols) are public symbols, i.e. the symbols you would export to third parties to assist debugging.
Please see this for additional details http://msdn.microsoft.com/en-us/library/ms789520.aspx
Brian Rasmussen
2009-10-27 11:33:32
A:
Public symbols have Name, Frame pointer omission (FPO) for each function and private has alomost everything.
Naveen
2009-10-27 15:16:59
A:
Typically, public symbols are only enough to get a stack trace - function names, FPO data, etc.
Private is a superset of public and also contains global and local variables, types, and source line information. Private symbols provide a much richer debugging experience, but expose a lot of implementation details
Michael
2009-12-10 00:47:52