/// <summary>
 /// Converts the value to the given Type using the given CultureInfo and the given <see cref="ConversionOptions">ConversionOptions</see>.
 /// </summary>
 /// <param name="value">The value which is converted.</param>
 /// <param name="destinationType">The Type to which the given value is converted.</param>
 /// <param name="culture">The CultureInfo to use as the current culture.</param>
 /// <param name="options">The options which are used for conversion.</param>
 /// <returns>An Object instance of type <paramref name="destinationType">destinationType</paramref> whose value is equivalent to the given <paramref name="value">value</paramref>.</returns>
 public static object Convert(this object value, Type destinationType, CultureInfo culture, ConversionOptions options)
 {
     return(UniversalTypeConverter.Convert(value, destinationType, culture, options));
 }
 /// <summary>
 /// Converts the value to the given Type using the current CultureInfo and the <see cref="ConversionOptions">ConversionOptions</see>.<see cref="ConversionOptions.EnhancedTypicalValues">ConvertSpecialValues</see>.
 /// </summary>
 /// <param name="value">The value which is converted.</param>
 /// <param name="destinationType">The Type to which the given value is converted.</param>
 /// <returns>An Object instance of type <paramref name="destinationType">destinationType</paramref> whose value is equivalent to the given <paramref name="value">value</paramref>.</returns>
 public static object Convert(this object value, Type destinationType)
 {
     return(UniversalTypeConverter.Convert(value, destinationType));
 }