¡@

Home 

c# Programming Glossary: windbg

Symbol issue when debugging C# code

http://stackoverflow.com/questions/1552927/symbol-issue-when-debugging-c-sharp-code

issue when debugging C# code I am using WinDbg to load a crash dump from managed code C# a console application.. I have put the related PDB file into the symbol path. But WinDbg always find the symbol from a strange folder. Here is an example.. FooService.pdb to the directory C MySymbols . But why does WinDbg not find FooService.pdb in C MySymbols but from a strange sub..

Auto-scrolling text box uses more memory than expected

http://stackoverflow.com/questions/1743448/auto-scrolling-text-box-uses-more-memory-than-expected

I should share my methodology. I used a combination of WinDbg and perfmon to track the memory use over time from a couple.. steadily increases as more messages are logged. This makes WinDbg less useful as it's tools sos and commands dumpheap gcroot etc...

High Frequency Heap

http://stackoverflow.com/questions/4405627/high-frequency-heap

as the method table of types. This can be verified using WinDbg SOS as shown below. It is also stated in the SSCLI book p. 235..

How do I obtain a crash dump

http://stackoverflow.com/questions/4992569/how-do-i-obtain-a-crash-dump

2010 http msdn.microsoft.com en us library fk551230.aspx WinDbg Not to bad but more intimidating than other tools With procdump.. if that is not an option you can always use VS2008 or WinDbg with the SOS extensions. I do highly recommend Visual Studio.. recommend Visual Studio 2010 though as SOS extensions and WinDbg in general have a pretty steep learning curve. To learn more..

A curious case of Visual Studio 2010 debugger(it can not hit a break point)

http://stackoverflow.com/questions/5744506/a-curious-case-of-visual-studio-2010-debuggerit-can-not-hit-a-break-point

mapping process here Debugging IL You can try to use WinDbg and SOS extension for it to examine JIT ed version of the method... to particular line of C#. Here are couple link about using WinDbg for breaking in managed code and getting a memory address of.. ed code for a method from there Setting a breakpoint in WinDbg for Managed Code SOS Cheat Sheet .NET 2.0 3.0 3.5 . You can..

How do I fix a .Net windows app crashing at startup with Exception code: 0xe0434352?

http://stackoverflow.com/questions/6244939/how-do-i-fix-a-net-windows-app-crashing-at-startup-with-exception-code-0xe0434

debugger won't help you then you might need to check out WinDbg with SOS. See here and here for an intro. Let it break on the..

Retrieve JIT output

http://stackoverflow.com/questions/6928442/retrieve-jit-output

assembly share improve this question You should use WinDbg with SOS SOSEX ensure that method you want to see x86 code for.. if debugger is present or not. UPD Some clarification. WinDbg is a debugger also but it is native one. Here you can read about..

How can I prevent BufferManager / PooledBufferManager in my WCF client app from wasting memory?

http://stackoverflow.com/questions/7252417/how-can-i-prevent-buffermanager-pooledbuffermanager-in-my-wcf-client-app-from

opimization caching to disk etc. . A GC root analysis in WinDbg yields the following I sanitized the names of our proprietary..