/// <summary> /// Converts the string representation of a <see cref="RectangleD"/> to an object instance. /// A return value indicates whether the conversion succeeded. /// </summary> /// <param name="s">The string to convert.</param> /// <param name="style">A set of <see cref="NumberStyles"/> values indicating which elements are present in <paramref name="s"/>.</param> /// <param name="provider">A format provider that provides culture-specific formatting information.</param> /// <param name="v">The converted value.</param> /// <returns><see langword="true"/> if the conversion succeeded; otherwise, <see langword="false"/>.</returns> public static Boolean TryParse(String s, NumberStyles style, IFormatProvider provider, out RectangleD v) { v = default(RectangleD); if (String.IsNullOrEmpty(s)) { return(false); } var components = s.Split((Char[])null, StringSplitOptions.RemoveEmptyEntries); if (components.Length != 4) { return(false); } if (!Double.TryParse(components[0], style, provider, out Double x)) { return(false); } if (!Double.TryParse(components[1], style, provider, out Double y)) { return(false); } if (!Double.TryParse(components[2], style, provider, out Double width)) { return(false); } if (!Double.TryParse(components[3], style, provider, out Double height)) { return(false); } v = new RectangleD(x, y, width, height); return(true); }
/// <summary> /// Converts the string representation of a <see cref="RectangleD"/> to an object instance. /// A return value indicates whether the conversion succeeded. /// </summary> /// <param name="s">The string to convert.</param> /// <param name="v">The converted value.</param> /// <returns><see langword="true"/> if the conversion succeeded; otherwise, <see langword="false"/>.</returns> public static Boolean TryParse(String s, out RectangleD v) { return(TryParse(s, NumberStyles.Number, NumberFormatInfo.CurrentInfo, out v)); }