Converts the specified string representation of a date to its Date equivalent using the specified format, culture-specific format information, and formatting style. The format of the string representation must match the specified format exactly.

Namespace:  DlhSoft.Windows.Data
Assembly:  DlhSoft.ProjectData.GanttChart.LightWPF.Controls (in DlhSoft.ProjectData.GanttChart.LightWPF.Controls.dll)

Syntax

C#
public static Date ParseExact(
	string s,
	string format,
	IFormatProvider provider,
	DateTimeStyles styles
)
Visual Basic (Declaration)
Public Shared Function ParseExact ( _
	s As String, _
	format As String, _
	provider As IFormatProvider, _
	styles As DateTimeStyles _
) As Date

Parameters

s
Type: System..::.String
A string containing a date to convert.
format
Type: System..::.String
The expected format of s.
provider
Type: System..::.IFormatProvider
An IFormatProvider that supplies culture-specific format information about ss.
styles
Type: System.Globalization..::.DateTimeStyles
A bitwise combination of DateTimeStyles values that indicates the permitted format of s. A typical value to specify is None.

Return Value

A Date equivalent to the date contained in s as specified by format, provider, and styles.

See Also