Click or drag to resize

GregorianDateTryParse Method (String, GregorianDate)

Converts the specified string representation of a date and time to its GregorianDate equivalent.

Note: GregorianDate is always assumed to be in UTC. You cannot parse strings containing time zone information. However, this method handles three common ISO8601 formats:

  • the extended format "YYYY-MM-DDThh:mm:ss.sZ"
  • The "day of year" equivalent "YYYY-DDDThh:mm:ss.sZ"
  • The basic format "YYYYMMDDThhmmss.sZ"

Namespace:  AGI.Foundation.Time
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static bool TryParse(
	string s,
	out GregorianDate result
)

Parameters

s
Type: SystemString
A string containing a date and time to convert.
result
Type: AGI.Foundation.TimeGregorianDate
On return, the GregorianDate value equivalent to the date and time contained in s, if the conversion succeeded, or MinValue if the conversion failed. The conversion fails if the s parameter is , or does not contain a valid string representation of a date and time.

Return Value

Type: Boolean
if s was parsed successfully; otherwise .
See Also