Stories recently tagged with 'Debug'

WinDbg + SOS Cheat Sheet(kentb.blogspot.com)

submitted by akcoderakcoder(830) 2 years, 10 months ago

A WinDbg + SOS cheat sheet that will print nicely on a sheet of A4 paper. read more...

add a comment |category: |Views: 142

tags: another

C# Snippet - Using the Conditional Attribute(switchonthecode.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 1 month ago

You probably know about methods like Debug.WriteLine and Debug.Assert. A big part of their use is that they only do stuff if you are running a application compiled in Debug mode. If you are running in release mode, however, its like those calls in your code don't even exist - this way you can feel free to put helpful debug messages and checks in your code without worrying about the release version of the application being affected. Have you ever wondered how this is done? Well, what happens in the end is that those calls really don't exist in a release compiled version of an application - they are literally ripped out of the code. But there is no magic going on here, and nothing that is specially restricted to Microsoft's own code - its actually just a plain old method attribute, one that we can use in our own code if we wanted to. read more...

add a comment |category: |Views: 17

tags: another

How to debug an obscure IIS error(hanselman.com)

submitted by sirroccosirrocco(800) 3 years, 6 months ago

ScottHa shows how you can get to the bottom of a clear (as mud) problem when starting IIS using Process Monitor and Process Explorer and a little bit of intuition. read more...

add a comment |category: |Views: 39

tags: another

Tips & Tricks: Use DebuggerDisplayAttribute for easier debugging(gregbeech.com)

submitted by CraigStuntzCraigStuntz(438) 3 years, 8 months ago

When debugging, it's common to hover over an object to get a quick view of what its properties are. This is where DebuggerDisplayAttribute comes in. The format string looks similar to normal .NET format strings in that the values to replace are between curly braces, but instead of being told what to substitute the debugger treats these values as expressions and attempts to evaluate them using the current context. read more...

add a comment |category: |Views: 225

tags: another

Debugging ASP.NET on a Production Server 101(blogs.msdn.com)

submitted by tom24tom24(1100) 3 years, 10 months ago

End-to-End debugging story for production machines. read more...

add a comment |category: |Views: 31

tags: another

Migrating to Debugging .NET after Win32 (blogs.msdn.com)

submitted by tom24tom24(1100) 3 years, 10 months ago

Some of the differences between Win32 and .NET debugging read more...

add a comment |category: |Views: 8

tags: another

Debugging 101 - Measure, do your homework and think out of the box(tellingmachine.com)

submitted by KlausKlaus(755) 3 years, 10 months ago

Being confronted with an occasional bug in a complex system can be quite overwhelming. There are three disciplines that help you to stay strong: 1) Read and learn about your platform and how to debug it. 2) Use tools to quickly get the low hanging fruit. This might be enough in most of the cases to identify the bug. 3) Think out of the box and try to be creative. Build a model, play with it, break it and fix it. In the worst case, you won't have found the cause of the bug, but you learned at least something new about your software. read more...

add a comment |category: |Views: 11

tags: another

Configuring VS2008 to Debug .NET Framework Source Code(blogs.msdn.com)

submitted by .NetKicks.NetKicks(1304) 4 years, 4 months ago

Shawn Burke explains how to set up the Visual Studio 2008 for debugging and put the released .NET Framework source code into use. It also features a FAQ and lists all currently available sources/assemblies read more...

add a comment |category: |Views: 14

tags: another

Safari 3 for Windows: Enable JavaScript Debugging (pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 4 years, 5 months ago

As you probably know, Safari 3 doesn't allow you to turn on the debug menu within any settings dialogs. It also doesn't come with a JavaScript Debugger either. This makes it almost impossible to do any JavaScript development for Safari. Luckily you can turn on the debug menu, and there is a debugger you can download. I also have instructions on how to actually get the debugger (Drosera) to run under Windows. read more...

add a comment |category: |Views: 97

tags: another

Why you should always remember to set Debug="false" !(weblogs.asp.net)

submitted by sdorzaksdorzak(175) 4 years, 5 months ago

Scott explains why it's so important to remember about this little parameter. read more...

add a comment |category: |Views: 8

tags: another

Debug Visualizer for SubSonic Collections(blog.lavablast.com)

submitted by EtienneTremblayEtienneTremblay(5008) 4 years, 5 months ago

See your SubSonic collections in a DataGridView while debugging your application just like you would see a DataSet in debug. read more...

add a comment |category: |Views: 20

tags: another

Debug Visualizer Template for C# and VB.net(codechimp.org)

submitted by codechimpcodechimp(345) 4 years, 7 months ago

New C# and VB Visual Studio Projects Templates for creating your own debug visualizers. read more...

add a comment |category: |Views: 11

tags: another

Two Service Broker articles(weblogs.sqlteam.com)

submitted by spirit1spirit1(3160) 4 years, 9 months ago

2 articles about Service Broker: - Cross Server Many to One (One to Many) scenario - How to troubleshoot Service Broker read more...

add a comment |category: |Views: 12

tags: another

Break into debugging via code(youredoingitwrong.mee.nu)

submitted by tarfutarfu(180) 4 years, 11 months ago

Breakpoints are for pussies. read more...

1 comment |category: |Views: 0

tags: another

Debug JavaScript in Visual Studio 2005(blog.madskristensen.dk)

submitted by edburdoedburdo(1350) 5 years ago

For those who don't know, here is a rundown on how to get VS 2005 to debug Javascript in IE. read more...

add a comment |category: |Views: 11

tags: another

Debugging an ASP.NET Web Site with SSL(chrisbrandsma.com)

submitted by cwbrandsmacwbrandsma(1711) 5 years, 1 month ago

How to debug a ASP.NET Web Site with an SSL certificate. read more...

2 comments |category: |Views: 175

tags: another