For those of you blogging with BlogEngine.Net I highly recommend Windows Live Writer.  Its “Code” formatting plug-in helps with the nightmare of trying to format or display code snippets.  Here is example

Without the code plugin

public class AddressValidationProviderFactory
{
    public static IAddressValidationProvider Create()
    {

        return new PurolatorAddressValidationProvider();

    }
}

 

With code plugin

   1:      public class AddressValidationProviderFactory
   2:      {
   3:          public static IAddressValidationProvider Create()
   4:          {
   5:   
   6:              return new PurolatorAddressValidationProvider();
   7:   
   8:          }
   9:      }