Converts an array of numeric date values used by Excel to an array of .NET DateTime.
Namespace:
XllPlus.ComWrappers.Runtime
Assembly:
XllPlus.ComWrappers.Runtime (in XllPlus.ComWrappers.Runtime.dll) Version: 6.3.4.831 (6.3.4.0831)
Syntax
Visual Basic (Declaration) |
---|
Protected Function DatesFromExcel2d ( _
ad As Double(,) _
) As DateTime(,) |
Visual C++ |
---|
protected:
array<DateTime,2>^ DatesFromExcel2d(
array<double,2>^ ad
) |
Parameters
- ad
- Type: array<
System..::.Double
,2>[,](,)[,]
An array of Excel numeric values to be converted to .NET DateTimes.
Return Value
An array of .NET DateTime values equivalent to the Excel date/time values.
See Also