/// <summary>
 /// Remove a type converter for the specified type.
 /// </summary>
 /// <remarks>This is here for unit testing support, use at your own risk.</remarks>
 /// <typeparam name="TClr"></typeparam>
 public static void RemoveTypeConverterFor <TClr>()
 {
     if (_configuration != null)
     {
         _configuration.RemoveTypeConverterFor <TClr>();
     }
 }