Converts an array of .NET DateTime to an aray of numeric date values, as used by Excel.

Namespace:  XllPlus.ComWrappers.Runtime
Assembly:  XllPlus.ComWrappers.Runtime (in XllPlus.ComWrappers.Runtime.dll) Version: 6.3.4.831 (6.3.4.0831)

Syntax

C#
protected double[,] DatesToExcel2d(
	DateTime[,] adt
)
Visual Basic (Declaration)
Protected Function DatesToExcel2d ( _
	adt As DateTime(,) _
) As Double(,)
Visual C++
protected:
array<double,2>^ DatesToExcel2d(
	array<DateTime,2>^ adt
)

Parameters

adt
Type: array< System..::.DateTime ,2>[,](,)[,]
Array of date and time values to be converted to Excel numeric values.

Return Value

An array of numeric values representing each date in Excel.

See Also