/// <summary>
 /// Converts a string into a target type.
 /// </summary>
 /// <param name="type">The type we wish to return.</param>
 /// <param name="input">The string value we wish to convert.</param>
 /// <returns>An object containing the data represented by the input string, in the input type.</returns>
 public static Object Parse(this String input, Type type, Object @default = null)
 {
     return(DDRIT.Parse(input, type, @default));
 }