|
by ssmith via Blog on 5/29/2011 3:08:00 PM
Sometimes it’s handy to see the order in which methods are firing, or how long they’re taking, without having to attach a debugger. Typically, you might write some code like this: public void Foo()
{
Debug.Print("Entering Foo");
// other stuff
}
public void Bar()
{
... [ read more ]
|