GMonthDay.TryParse MethodGMonthDay.TryParse MethodGMonthDay::TryParse Method

Converts a lexical representation of an xs:gMonthDay to its GMonthDayGMonthDayGMonthDay equivalent. A return value indicates whether the conversion succeeded or failed.

Syntax

Public Shared Function TryParse( _
    value As String, _
    <Out>result As ByRef GMonthDay _
) As Boolean
public static bool TryParse(
    string value,
    out GMonthDay result
)
public:
static bool TryParse(
    String^ value, 
    [Out] GMonthDay% result
)
 

Parameters

value

Type: System.StringSystem.StringSystem::String^

The lexical representation of an xs:gMonthDay to convert.

result

Type: out XmlPrime.GMonthDayByRef XmlPrime.GMonthDayXmlPrime::GMonthDay%

When this method returns, contains the GMonthDayGMonthDayGMonthDay value equivalent to the xs:gMonthDay represented by value if parsing succeeded. Otherwise the value is undefined.

Return Value

Type: System.BooleanSystem.BooleanSystem::Boolean

trueTruetrue if the conversion succeeded; otherwise falseFalsefalse.

Exceptions

ExceptionCondition
ArgumentNullExceptionArgumentNullExceptionArgumentNullExceptionvalue is null a null reference (Nothing in Visual Basic) nullptr.