| DfsDLLWrapperUtilToDfsDateStrings Method  | 
            Create two strings in MZ format for date and time, respectively
            
 
Namespace: DHI.Generic.MikeZero.DFSAssembly: DHI.Generic.MikeZero.DFS (in DHI.Generic.MikeZero.DFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntaxpublic static void ToDfsDateStrings(
	DateTime d,
	out string date,
	out string time
)
Public Shared Sub ToDfsDateStrings ( 
	d As DateTime,
	<OutAttribute> ByRef date As String,
	<OutAttribute> ByRef time As String
)
public:
static void ToDfsDateStrings(
	DateTime d, 
	[OutAttribute] String^% date, 
	[OutAttribute] String^% time
)
static member ToDfsDateStrings : 
        d : DateTime * 
        date : string byref * 
        time : string byref -> unit 
Parameters
- d
 - Type: SystemDateTime
DateTime - date
 - Type: SystemString
the date, "yyyy-MM-dd" - time
 - Type: SystemString
the time, "HH:mm:ss" 
See Also