show/hide this revision's text 2 Fixed code to compile (as Chris S pointed out) + improved formatting

I have an extension method for logging exceptions:

   public static void string Log(this Exception obj)
   {
      //your logging logic here
   }

And it is used like this:

    try
    {
        //Your stuff here
    }
    catch(Exception ex)
    {
        ex.Log();
    }

[sorry for posting twice; the 2nd one is better designed :-)]

show/hide this revision's text 1

I have an extension method for logging exceptions:

   public void string Log(this Exception obj)
   {
      //your logging logic here
   }

And it is used like this:

try
{
    //Your stuff here
}
    catch(Exception ex)
{
    ex.Log();
}

[sorry for posting twice; the 2nd one is better designed :-)]

    Post Made Community Wiki by Community