/// <summary>
 /// Indicates if a given argument can be converted.
 /// </summary>
 /// <param name="argument">The value to convert.</param>
 /// <returns>A boolean if this is possible.</returns>
 public bool CanConvertFrom(Value argument)
 {
     return(Expected.IsInstanceOfType(argument));
 }