TryParse()

DateTime::TryParse(const String&, DateTime&) method

Converts the specified string representation of a date and time value to the equivalent DateTime object.

static bool System::DateTime::TryParse(const String &s, DateTime &result)

Arguments

ParameterTypeDescription
sconst String&The string representation of a date and time value to convert.
resultDateTime&The output argument that, if the conversion succeeds, contains the result of conversion.

Return Value

True if conversion succeeds, otherwise - false.

DateTime::TryParse(const String&, const SharedPtr<IFormatProvider>&, Globalization::DateTimeStyles, DateTime&) method

Converts the specified string representation of a date and time value to the equivalent DateTime object using the specified culture-specific format information and style.

static bool System::DateTime::TryParse(const String &s, const SharedPtr<IFormatProvider> &provider, Globalization::DateTimeStyles styles, DateTime &result)

Arguments

ParameterTypeDescription
sconst String&The string representation of a date and time value to convert.
providerconst SharedPtr<IFormatProvider>&The IFormatProvider object that provides culture-specific format information.
stylesGlobalization::DateTimeStylesA bitwise combination of the enumeration values that provides additional information about s, about style elements that may be present in s, or about the conversion from s to a DateTime object.
resultDateTime&The output argument that, if the conversion succeeds, contains the result of conversion.

Return Value

True if conversion succeeds, otherwise - false.

DateTime::TryParse(const String&, const SharedPtr<Globalization::CultureInfo>&, Globalization::DateTimeStyles, DateTime&) method

static bool System::DateTime::TryParse(const String &s, const SharedPtr<Globalization::CultureInfo> &culture, Globalization::DateTimeStyles styles, DateTime &result)

DateTime::TryParse(const String&, const SharedPtr<Globalization::DateTimeFormatInfo>&, Globalization::DateTimeStyles, DateTime&) method

static bool System::DateTime::TryParse(const String &s, const SharedPtr<Globalization::DateTimeFormatInfo> &dtfi, Globalization::DateTimeStyles styles, DateTime &result)

DateTime::TryParse(const String&, std::nullptr_t, Globalization::DateTimeStyles, DateTime&) method

static bool System::DateTime::TryParse(const String &s, std::nullptr_t, Globalization::DateTimeStyles styles, DateTime &result)

See Also