Converts the specified string representation of a date to its Date equivalent.
Namespace:
DlhSoft.Windows.DataAssembly: DlhSoft.ProjectData.GanttChart.LightWPF.Controls (in DlhSoft.ProjectData.GanttChart.LightWPF.Controls.dll)
Syntax
C# |
---|
public static bool TryParse( string s, out Date result ) |
Visual Basic (Declaration) |
---|
Public Shared Function TryParse ( _ s As String, _ <OutAttribute> ByRef result As Date _ ) As Boolean |
Parameters
- s
- Type: System..::.String
A string containing a date to convert.
- result
- Type:
DlhSoft.Windows.Data..::.Date
%
When this method returns, contains the Date value equivalent to the date contained in s, if the conversion succeeded, or MinValue if the conversion failed. The conversion fails if the s parameter is a null reference (Nothing in Visual Basic), or does not contain a valid string representation of a date. This parameter is passed uninitialized.