May 12, 2006

Explore the Enterprise Library Exception Handling Block for .NET 2.0

n an ideal world, all the code you write would always run without error. But the reality is that no matter how carefully you write your code, errors can and will occur. Therefore, it’s imperative to have an efficient, configurable exception handling framework capable of handling errors in a graceful

Retrieve a Function’s Name Programmatically

bject reflection libraries, debugging tools, and code analyzers often need to access functions’ names at runtime. Until not long ago, the only portable way to accomplish this was to manually embed a hard-coded string with the function’s name inside the function’s body. Needless to say, this technique is very tedious