This is a mirror of official site: http://jasper-net.blogspot.com/

Get function return values and profiling information in .NET using Windbg

| Monday, March 1, 2010
There have been times when we would like to the know function return value ,debug within the function and get profiling information like the duration of a function. VS.NET provides all these features, but in production environment we won’t have VS.NET. This is where Windbg comes in handy.  Here is the sample code that I am going to use.

using System;
using System.Collections.Generic;
using System.Threading;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{

public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

Read more: Naveen's Blog

Posted via email from jasper22's posterous

0 comments: