Intersoft ClientUI Documentation
GetDateTimesBetweenInclusive Method



The start date time.
The end date time.
The number of values to return.
Returns a sequence of date time values from a start and end date time inclusive.
Syntax
Public Shared Function GetDateTimesBetweenInclusive( _
   ByVal start As Date, _
   ByVal end As Date, _
   ByVal count As Long _
) As IEnumerable(Of Date)
Dim start As Date
Dim end As Date
Dim count As Long
Dim value As IEnumerable(Of Date)
 
value = ValueHelper.GetDateTimesBetweenInclusive(start, end, count)
public static IEnumerable<DateTime> GetDateTimesBetweenInclusive( 
   DateTime start,
   DateTime end,
   long count
)
public:
static IEnumerable<DateTime>^ GetDateTimesBetweenInclusive( 
   DateTime start,
   DateTime end,
   int64 count
) 

Parameters

start
The start date time.
end
The end date time.
count
The number of values to return.

Return Value

A sequence of date time values.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ValueHelper Class
ValueHelper Members

Send Feedback