Click or drag to resize

DFDateTimeColumnTransform(FuncDateTime, DateTime) Method

Modifies the elements of this column by applying the given unary function to each element.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DFDateTimeColumn Transform(
	Func<DateTime, DateTime> function
)

Parameters

function  FuncDateTime, DateTime
A delegate object representing a function that takes a single DateTime parameter and returns a DateTime.

Return Value

DFDateTimeColumn
A reference to self.
Remarks
Upon exit, this[i] = function( this[i] ).
See Also