.NET Client Documentation
5.5.0
Search Results for

    Show / Hide Table of Contents

    TryParse Method

    TryParse(string?, CultureInfo, out HBigDecimal)

    Converts the string representation of a number to its HBigDecimal equivalent. A return value indicates whether the operation succeeded.

    Declaration
    public static bool TryParse(string? s, CultureInfo cultureInfo, out HBigDecimal bigDecimal)
    Parameters
    string s

    A string containing a number to convert.

    CultureInfo cultureInfo

    An object that supplies culture-specific formatting information about s.

    HBigDecimal bigDecimal

    When this method returns, contains the HBigDecimal equivalent of the number contained in s, if the conversion succeeded, or zero if the conversion failed.

    Returns
    bool

    true if s was converted successfully; otherwise, false.

    TryParse(string, out HBigDecimal)

    Converts the string representation of a number to its HBigDecimal equivalent. A return value indicates whether the operation succeeded.

    Declaration
    public static bool TryParse(string s, out HBigDecimal bigDecimal)
    Parameters
    string s

    A string containing a number to convert.

    HBigDecimal bigDecimal

    When this method returns, contains the HBigDecimal equivalent of the number contained in s, if the conversion succeeded, or zero if the conversion failed.

    Returns
    bool

    true if s was converted successfully; otherwise, false.

    In this article
    Back to top Copyright © 2010-2024 Hazelcast, Inc. All rights reserved.
    Generated by DocFX.