/// <inheritdoc />
        public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
        {
            var text = value as string;

            if (text != null)
            {
                ForcePerUnitlessUnit result;
                if (ForcePerUnitlessUnit.TryParse(text, out result))
                {
                    return(result);
                }

                var message = $"Could not convert the string '{text}' to an instance of ForcePerUnitlessUnit)";
                throw new NotSupportedException(message);
            }

            return(base.ConvertFrom(context, culture, value));
        }
示例#2
0
 /// <summary>
 /// Returns a quantity indicating whether this instance is equal to a specified <see cref="Gu.Units.ForcePerUnitlessUnit"/> object.
 /// </summary>
 /// <param name="other">An instance of <see cref="Gu.Units.ForcePerUnitlessUnit"/> object to compare with this instance.</param>
 /// <returns>
 /// true if <paramref name="other"/> represents the same ForcePerUnitlessUnit as this instance; otherwise, false.
 /// </returns>
 public bool Equals(ForcePerUnitlessUnit other)
 {
     return(this.symbol == other.symbol);
 }
示例#3
0
 /// <summary>
 /// Creates an instance of <see cref="Gu.Units.ForcePerUnitlessUnit"/> from its string representation
 /// </summary>
 /// <param name="text">The string representation of the <see cref="Gu.Units.ForcePerUnitlessUnit"/></param>
 /// <param name="result">The parsed <see cref="ForcePerUnitlessUnit"/></param>
 /// <returns>True if an instance of <see cref="ForcePerUnitlessUnit"/> could be parsed from <paramref name="text"/></returns>
 public static bool TryParse(string text, out ForcePerUnitlessUnit result)
 {
     return(UnitParser <ForcePerUnitlessUnit> .TryParse(text, out result));
 }