internal bool Equals(ConverterType other)
 {
     if (other.ToString().Equals(Converter, StringComparison.CurrentCultureIgnoreCase))
     {
         return(true);
     }
     return(false);
 }
 internal bool Equals(ConverterType other)
 {
     if (other.ToString().Equals(Converter, StringComparison.CurrentCultureIgnoreCase))
         return true;
     return false;
 }