Sign in
Riham Selim's Blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
Azure
clr
crash
debug
debugging
hang
managed debugging
Performance
sos
SP1
sxe
TF30059
TFS 2008
WAD
windbg
Browse by Tags
MSDN Blogs
>
Riham Selim's Blog
>
All Tags
>
sos
Tagged Content List
Blog Post:
Windbg QuickStart guide (Part 4 - Debugging unexpected program behavior)
Riham Selim
Let’s assume I have written some really ugly code like what you see here: 1: int i = 0; 2: try 3: { 4: i = int.Parse(args[0]); 5: } 6: catch 7: { 8: Console.WriteLine("Invalid Argument"); 9: } 10: Console.WriteLine(i); When the user executes the program...
on
14 Mar 2012
Blog Post:
Breaking on Module Load
Riham Selim
Let’s say we want to break the debugger when a specific dll is loaded, for example I want to enable some SOS commands and clr hasn’t been loaded yet, this is especially useful when you have an exception that happens too early in the program and you can’t rely on manually trying to break...
on
14 Mar 2012
Blog Post:
Error loading sos.dll
Riham Selim
Many times you get this error when you do .load sos 0:080> .load sos The call to LoadLibrary(sos) failed, Win32 error 0n2 "The system cannot find the file specified." Please check your debugger configuration and/or network access. You can solve this by doing .loadby sos clr , this means you...
on
3 Mar 2012
Page 1 of 1 (3 items)