public const int DaysInWeek = 7
Dim value As Integer
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public const int DaysInWeek = 7
VB UsageDim value As Integer
value = DateOnlyExtensions.DaysInWeek
C++public:
literal int DaysInWeek = 7
ASP.NETNo code example is currently available or this language may not be supported.
Field Value
Int32
Dim instance As DateOnlyRange
+Dim value As DateOnly
+
+Dim returnValue As Boolean
+
+returnValue = instance.Contains(value)
No code example is currently available or this language may not be supported.
Dim instance As DateOnlyRange
+Dim value As DateTime
+
+Dim returnValue As Boolean
+
+returnValue = instance.Contains(value)
No code example is currently available or this language may not be supported.
public TimeSpan Distance()
Dim instance As DateOnlyRange
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public TimeSpan Distance()
VB UsageDim instance As DateOnlyRange
Dim returnValue As TimeSpan
returnValue = instance.Distance()
C++public:
diff --git a/docs/html/M_MoreDateTime_DateOnlyRange_Empty.htm b/docs/html/M_MoreDateTime_DateOnlyRange_Empty.htm
new file mode 100644
index 0000000..3fc446b
--- /dev/null
+++ b/docs/html/M_MoreDateTime_DateOnlyRange_Empty.htm
@@ -0,0 +1,159 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateOnlyRange.Empty Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Only RangeEmpty Method
+
+ Get an empty range
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateOnlyRange Empty()
VB UsageDim instance As DateOnlyRange
+Dim returnValue As DateOnlyRange
+
+returnValue = instance.Empty()
C++public:
+virtual DateOnlyRange^ Empty() sealed
ASP.NETNo code example is currently available or this language may not be supported.
Return Value
DateOnlyRange
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_DateOnlyRange_Extend.htm b/docs/html/M_MoreDateTime_DateOnlyRange_Extend.htm
index c6ddc62..b10cda3 100644
--- a/docs/html/M_MoreDateTime_DateOnlyRange_Extend.htm
+++ b/docs/html/M_MoreDateTime_DateOnlyRange_Extend.htm
@@ -94,7 +94,7 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public DateOnlyRange Extend(
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateOnlyRange Extend(
TimeSpan timeSpan,
RangeDirection direction
)
VB UsageDim instance As DateOnlyRange
diff --git a/docs/html/M_MoreDateTime_DateOnlyRange_IsOrdered.htm b/docs/html/M_MoreDateTime_DateOnlyRange_IsOrdered.htm
new file mode 100644
index 0000000..557872f
--- /dev/null
+++ b/docs/html/M_MoreDateTime_DateOnlyRange_IsOrdered.htm
@@ -0,0 +1,159 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateOnlyRange.IsOrdered Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Only RangeIs Ordered Method
+
+ Verifies that the order of the dates is correct, Start < End
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public bool IsOrdered()
VB UsageDim instance As DateOnlyRange
+Dim returnValue As Boolean
+
+returnValue = instance.IsOrdered()
C++public:
+virtual bool IsOrdered() sealed
ASP.NETNo code example is currently available or this language may not be supported.
Return Value
Boolean
True if Start is less or equal End
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_DateOnlyRange_IsWithin.htm b/docs/html/M_MoreDateTime_DateOnlyRange_IsWithin.htm
new file mode 100644
index 0000000..cb9f900
--- /dev/null
+++ b/docs/html/M_MoreDateTime_DateOnlyRange_IsWithin.htm
@@ -0,0 +1,173 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateOnlyRange.IsWithin Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Only RangeIs Within Method
+
+ Verifies if the this range is contained entirely in the given range, including start and end
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public bool IsWithin(
+ DateOnlyRange value
+)
VB UsageDim instance As DateOnlyRange
+Dim value As DateOnlyRange
+
+Dim returnValue As Boolean
+
+returnValue = instance.IsWithin(value)
C++public:
+virtual bool IsWithin(
+ DateOnlyRange^ value
+) sealed
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- value DateOnlyRange
- The value to compare with
Return Value
Boolean
True if this object is entirely within the target range
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_DateOnlyRange_Offset.htm b/docs/html/M_MoreDateTime_DateOnlyRange_Offset.htm
index 685d41d..47e72b4 100644
--- a/docs/html/M_MoreDateTime_DateOnlyRange_Offset.htm
+++ b/docs/html/M_MoreDateTime_DateOnlyRange_Offset.htm
@@ -94,7 +94,7 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public DateOnlyRange Offset(
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateOnlyRange Offset(
TimeSpan timeSpan
)
VB UsageDim instance As DateOnlyRange
Dim timeSpan As TimeSpan
diff --git a/docs/html/M_MoreDateTime_DateOnlyRange_Order.htm b/docs/html/M_MoreDateTime_DateOnlyRange_Order.htm
new file mode 100644
index 0000000..026adb4
--- /dev/null
+++ b/docs/html/M_MoreDateTime_DateOnlyRange_Order.htm
@@ -0,0 +1,159 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateOnlyRange.Order Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Only RangeOrder Method
+
+ Orders the range, so that Start is guaranteed to be less or equal End
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateOnlyRange Order()
VB UsageDim instance As DateOnlyRange
+Dim returnValue As DateOnlyRange
+
+returnValue = instance.Order()
C++public:
+virtual DateOnlyRange^ Order() sealed
ASP.NETNo code example is currently available or this language may not be supported.
Return Value
DateOnlyRange
Itself ordered
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_DateOnlyRange_Reduce.htm b/docs/html/M_MoreDateTime_DateOnlyRange_Reduce.htm
index 0a39922..0688ab1 100644
--- a/docs/html/M_MoreDateTime_DateOnlyRange_Reduce.htm
+++ b/docs/html/M_MoreDateTime_DateOnlyRange_Reduce.htm
@@ -94,7 +94,7 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public DateOnlyRange Reduce(
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateOnlyRange Reduce(
TimeSpan timeSpan,
RangeDirection direction
)
VB UsageDim instance As DateOnlyRange
diff --git a/docs/html/M_MoreDateTime_DateOnlyRange__ctor.htm b/docs/html/M_MoreDateTime_DateOnlyRange__ctor.htm
index 6238dce..27a50d2 100644
--- a/docs/html/M_MoreDateTime_DateOnlyRange__ctor.htm
+++ b/docs/html/M_MoreDateTime_DateOnlyRange__ctor.htm
@@ -12,13 +12,13 @@
- DateOnlyRange(DateOnlyRange) Constructor
-
-
+ DateOnlyRange Constructor
+
+
-
+
@@ -86,23 +86,17 @@
- Date Only Range(Date Only Range) Constructor
+ Date Only Range Constructor
- Initializes a copied new instance of the DateOnlyRange class.
+ Initializes a new instance of the DateOnlyRange class.
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public DateOnlyRange(
- DateOnlyRange range
-)
VB UsageDim range As DateOnlyRange
-
-Dim instance As New DateOnlyRange(range)
C++public:
-DateOnlyRange(
- DateOnlyRange^ range
-)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- range DateOnlyRange
- The range to copy
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateOnlyRange()
VB UsageDim instance As New DateOnlyRange()
C++public:
+DateOnlyRange()
ASP.NETNo code example is currently available or this language may not be supported.
diff --git a/docs/html/M_MoreDateTime_DateOnlyRange__ctor_1.htm b/docs/html/M_MoreDateTime_DateOnlyRange__ctor_1.htm
index 90cc36b..e290504 100644
--- a/docs/html/M_MoreDateTime_DateOnlyRange__ctor_1.htm
+++ b/docs/html/M_MoreDateTime_DateOnlyRange__ctor_1.htm
@@ -12,13 +12,13 @@
- DateOnlyRange(DateOnly, DateOnly) Constructor
-
-
+ DateOnlyRange(DateOnlyRange) Constructor
+
+
-
+
@@ -86,27 +86,23 @@
- Date Only Range(Date Only, Date Only) Constructor
+ Date Only Range(Date Only Range) Constructor
- Initializes a new instance of the DateOnlyRange class.
+ Initializes a copied new instance of the DateOnlyRange class.
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0VB UsageDim startTime As DateOnly
-Dim endTime As DateOnly
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateOnlyRange(
+ DateOnlyRange range
+)
VB UsageDim range As DateOnlyRange
-Dim instance As New DateOnlyRange(startTime,
- endTime)
C++public:
+Dim instance As New DateOnlyRange(range)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
+ DateOnlyRange^ range
+)ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- range DateOnlyRange
- The range to copy
diff --git a/docs/html/M_MoreDateTime_DateOnlyRange__ctor_2.htm b/docs/html/M_MoreDateTime_DateOnlyRange__ctor_2.htm
index c0ed249..02b3ecc 100644
--- a/docs/html/M_MoreDateTime_DateOnlyRange__ctor_2.htm
+++ b/docs/html/M_MoreDateTime_DateOnlyRange__ctor_2.htm
@@ -12,13 +12,13 @@
- DateOnlyRange(DateTime, DateTime) Constructor
-
-
+ DateOnlyRange(DateTimeRange) Constructor
+
+
-
+
@@ -86,27 +86,23 @@
- Date Only Range(Date Time, Date Time) Constructor
+ Date Only Range(Date Time Range) Constructor
- Initializes a new instance of the DateOnlyRange class.
+ Initializes a copied new instance of the DateTimeRange class.
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0VB UsageDim startTime As DateTime
-Dim endTime As DateTime
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateOnlyRange(
+ DateTimeRange range
+)
VB UsageDim range As DateTimeRange
-Dim instance As New DateOnlyRange(startTime,
- endTime)
C++public:
+Dim instance As New DateOnlyRange(range)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
+ DateTimeRange^ range
+)ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- range DateTimeRange
- The range to copy
diff --git a/docs/html/M_MoreDateTime_DateOnlyRange__ctor_3.htm b/docs/html/M_MoreDateTime_DateOnlyRange__ctor_3.htm
new file mode 100644
index 0000000..eb4abaf
--- /dev/null
+++ b/docs/html/M_MoreDateTime_DateOnlyRange__ctor_3.htm
@@ -0,0 +1,169 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateOnlyRange(DateOnly, DateOnly) Constructor
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Only Range(Date Only, Date Only) Constructor
+
+ Initializes a new instance of the DateOnlyRange class.
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim startTime As DateOnly
+Dim endTime As DateOnly
+
+Dim instance As New DateOnlyRange(startTime,
+ endTime)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_DateOnlyRange__ctor_4.htm b/docs/html/M_MoreDateTime_DateOnlyRange__ctor_4.htm
new file mode 100644
index 0000000..8943f12
--- /dev/null
+++ b/docs/html/M_MoreDateTime_DateOnlyRange__ctor_4.htm
@@ -0,0 +1,169 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateOnlyRange(DateTime, DateTime) Constructor
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Only Range(Date Time, Date Time) Constructor
+
+ Initializes a new instance of the DateOnlyRange class.
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim startTime As DateTime
+Dim endTime As DateTime
+
+Dim instance As New DateOnlyRange(startTime,
+ endTime)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_DateTimeProvider_SetMockDateTime.htm b/docs/html/M_MoreDateTime_DateTimeProvider_SetMockDateTime.htm
index b4c6c8e..a0bfc9d 100644
--- a/docs/html/M_MoreDateTime_DateTimeProvider_SetMockDateTime.htm
+++ b/docs/html/M_MoreDateTime_DateTimeProvider_SetMockDateTime.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static void SetMockDateTime(
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim dtNow As DateTime?
diff --git a/docs/html/M_MoreDateTime_DateTimeProvider_SetUtcHandling.htm b/docs/html/M_MoreDateTime_DateTimeProvider_SetUtcHandling.htm
index e633e26..4ca9adc 100644
--- a/docs/html/M_MoreDateTime_DateTimeProvider_SetUtcHandling.htm
+++ b/docs/html/M_MoreDateTime_DateTimeProvider_SetUtcHandling.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public void SetUtcHandling(
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public void SetUtcHandling(
bool NowIsUtc
)
VB UsageDim instance As DateTimeProvider
Dim NowIsUtc As Boolean
diff --git a/docs/html/M_MoreDateTime_DateTimeProvider__ctor.htm b/docs/html/M_MoreDateTime_DateTimeProvider__ctor.htm
index 87da289..2e291ee 100644
--- a/docs/html/M_MoreDateTime_DateTimeProvider__ctor.htm
+++ b/docs/html/M_MoreDateTime_DateTimeProvider__ctor.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public DateTimeProvider(
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateTimeProvider(
bool nowIsUtc = true
)
VB UsageDim nowIsUtc As Boolean
diff --git a/docs/html/M_MoreDateTime_DateTimeRange_Contains.htm b/docs/html/M_MoreDateTime_DateTimeRange_Contains.htm
new file mode 100644
index 0000000..7d655b3
--- /dev/null
+++ b/docs/html/M_MoreDateTime_DateTimeRange_Contains.htm
@@ -0,0 +1,176 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateTimeRange.Contains(DateOnly) Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Time RangeContains(Date Only) Method
+
+ Verifies if the given value is contained in this range, including start and end
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim instance As DateTimeRange
+Dim value As DateOnly
+
+Dim returnValue As Boolean
+
+returnValue = instance.Contains(value)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- value DateOnly
- The value
Return Value
Boolean
True, if value is within this range
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_DateTimeRange_Contains_1.htm b/docs/html/M_MoreDateTime_DateTimeRange_Contains_1.htm
new file mode 100644
index 0000000..cf37e6e
--- /dev/null
+++ b/docs/html/M_MoreDateTime_DateTimeRange_Contains_1.htm
@@ -0,0 +1,176 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateTimeRange.Contains(DateTime) Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Time RangeContains(Date Time) Method
+
+ Verifies if the given value is contained in this range, including start and end
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim instance As DateTimeRange
+Dim value As DateTime
+
+Dim returnValue As Boolean
+
+returnValue = instance.Contains(value)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- value DateTime
- The value
Return Value
Boolean
True, if value is within this range
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_DateTimeRange_Distance.htm b/docs/html/M_MoreDateTime_DateTimeRange_Distance.htm
index 5edea04..0c786fe 100644
--- a/docs/html/M_MoreDateTime_DateTimeRange_Distance.htm
+++ b/docs/html/M_MoreDateTime_DateTimeRange_Distance.htm
@@ -94,7 +94,7 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public TimeSpan Distance()
VB UsageDim instance As DateTimeRange
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public TimeSpan Distance()
VB UsageDim instance As DateTimeRange
Dim returnValue As TimeSpan
returnValue = instance.Distance()
C++public:
diff --git a/docs/html/M_MoreDateTime_DateTimeRange_Empty.htm b/docs/html/M_MoreDateTime_DateTimeRange_Empty.htm
new file mode 100644
index 0000000..04a38fd
--- /dev/null
+++ b/docs/html/M_MoreDateTime_DateTimeRange_Empty.htm
@@ -0,0 +1,159 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateTimeRange.Empty Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Time RangeEmpty Method
+
+ Get an empty range
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateTimeRange Empty()
VB UsageDim instance As DateTimeRange
+Dim returnValue As DateTimeRange
+
+returnValue = instance.Empty()
C++public:
+virtual DateTimeRange^ Empty() sealed
ASP.NETNo code example is currently available or this language may not be supported.
Return Value
DateTimeRange
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_DateTimeRange_Extend.htm b/docs/html/M_MoreDateTime_DateTimeRange_Extend.htm
index d78c60c..3418cc0 100644
--- a/docs/html/M_MoreDateTime_DateTimeRange_Extend.htm
+++ b/docs/html/M_MoreDateTime_DateTimeRange_Extend.htm
@@ -94,7 +94,7 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public DateTimeRange Extend(
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateTimeRange Extend(
TimeSpan timeSpan,
RangeDirection direction
)
VB UsageDim instance As DateTimeRange
diff --git a/docs/html/M_MoreDateTime_DateTimeRange_IsOrdered.htm b/docs/html/M_MoreDateTime_DateTimeRange_IsOrdered.htm
new file mode 100644
index 0000000..5aecb3f
--- /dev/null
+++ b/docs/html/M_MoreDateTime_DateTimeRange_IsOrdered.htm
@@ -0,0 +1,159 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateTimeRange.IsOrdered Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Time RangeIs Ordered Method
+
+ Verifies that the order of the dates is correct, Start < End
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public bool IsOrdered()
VB UsageDim instance As DateTimeRange
+Dim returnValue As Boolean
+
+returnValue = instance.IsOrdered()
C++public:
+virtual bool IsOrdered() sealed
ASP.NETNo code example is currently available or this language may not be supported.
Return Value
Boolean
True if Start is less or equal End
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_DateTimeRange_IsWithin.htm b/docs/html/M_MoreDateTime_DateTimeRange_IsWithin.htm
new file mode 100644
index 0000000..cbe6125
--- /dev/null
+++ b/docs/html/M_MoreDateTime_DateTimeRange_IsWithin.htm
@@ -0,0 +1,173 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateTimeRange.IsWithin Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Time RangeIs Within Method
+
+ Verifies if the this range is contained entirely in the given range, including start and end
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public bool IsWithin(
+ DateTimeRange value
+)
VB UsageDim instance As DateTimeRange
+Dim value As DateTimeRange
+
+Dim returnValue As Boolean
+
+returnValue = instance.IsWithin(value)
C++public:
+virtual bool IsWithin(
+ DateTimeRange^ value
+) sealed
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- value DateTimeRange
- The value to compare with
Return Value
Boolean
True if this object is entirely within the target range
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_DateTimeRange_Offset.htm b/docs/html/M_MoreDateTime_DateTimeRange_Offset.htm
index 34a3097..544e6ae 100644
--- a/docs/html/M_MoreDateTime_DateTimeRange_Offset.htm
+++ b/docs/html/M_MoreDateTime_DateTimeRange_Offset.htm
@@ -94,7 +94,7 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public DateTimeRange Offset(
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateTimeRange Offset(
TimeSpan timeSpan
)
VB UsageDim instance As DateTimeRange
Dim timeSpan As TimeSpan
diff --git a/docs/html/M_MoreDateTime_DateTimeRange_Order.htm b/docs/html/M_MoreDateTime_DateTimeRange_Order.htm
new file mode 100644
index 0000000..ff6a463
--- /dev/null
+++ b/docs/html/M_MoreDateTime_DateTimeRange_Order.htm
@@ -0,0 +1,159 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateTimeRange.Order Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Time RangeOrder Method
+
+ Orders the range, so that Start is guaranteed to be less or equal End
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateTimeRange Order()
VB UsageDim instance As DateTimeRange
+Dim returnValue As DateTimeRange
+
+returnValue = instance.Order()
C++public:
+virtual DateTimeRange^ Order() sealed
ASP.NETNo code example is currently available or this language may not be supported.
Return Value
DateTimeRange
Itself ordered
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_DateTimeRange_Reduce.htm b/docs/html/M_MoreDateTime_DateTimeRange_Reduce.htm
index bbc741b..72e9dc9 100644
--- a/docs/html/M_MoreDateTime_DateTimeRange_Reduce.htm
+++ b/docs/html/M_MoreDateTime_DateTimeRange_Reduce.htm
@@ -94,7 +94,7 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public DateTimeRange Reduce(
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateTimeRange Reduce(
TimeSpan timeSpan,
RangeDirection direction
)
VB UsageDim instance As DateTimeRange
diff --git a/docs/html/M_MoreDateTime_DateTimeRange__ctor.htm b/docs/html/M_MoreDateTime_DateTimeRange__ctor.htm
index 70668f9..1bd599e 100644
--- a/docs/html/M_MoreDateTime_DateTimeRange__ctor.htm
+++ b/docs/html/M_MoreDateTime_DateTimeRange__ctor.htm
@@ -12,13 +12,13 @@
- DateTimeRange(DateTimeRange) Constructor
-
-
+ DateTimeRange Constructor
+
+
-
+
@@ -86,23 +86,17 @@
- Date Time Range(Date Time Range) Constructor
+ Date Time Range Constructor
- Initializes a copied new instance of the DateTimeRange class.
+ Initializes a new instance of the DateTimeRange class.
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public DateTimeRange(
- DateTimeRange range
-)
VB UsageDim range As DateTimeRange
-
-Dim instance As New DateTimeRange(range)
C++public:
-DateTimeRange(
- DateTimeRange^ range
-)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- range DateTimeRange
- The range to copy
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateTimeRange()
VB UsageDim instance As New DateTimeRange()
C++public:
+DateTimeRange()
ASP.NETNo code example is currently available or this language may not be supported.
diff --git a/docs/html/M_MoreDateTime_DateTimeRange__ctor_1.htm b/docs/html/M_MoreDateTime_DateTimeRange__ctor_1.htm
index f451ab1..667cacc 100644
--- a/docs/html/M_MoreDateTime_DateTimeRange__ctor_1.htm
+++ b/docs/html/M_MoreDateTime_DateTimeRange__ctor_1.htm
@@ -12,13 +12,13 @@
- DateTimeRange(DateOnly, DateOnly) Constructor
-
-
+ DateTimeRange(DateTimeRange) Constructor
+
+
-
+
@@ -86,27 +86,23 @@
- Date Time Range(Date Only, Date Only) Constructor
+ Date Time Range(Date Time Range) Constructor
- Initializes a new instance of the DateTimeRange class.
+ Initializes a copied new instance of the DateTimeRange class.
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0VB UsageDim startTime As DateOnly
-Dim endTime As DateOnly
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DateTimeRange(
+ DateTimeRange range
+)
VB UsageDim range As DateTimeRange
-Dim instance As New DateTimeRange(startTime,
- endTime)
C++public:
+Dim instance As New DateTimeRange(range)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
+ DateTimeRange^ range
+)ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- range DateTimeRange
- The range to copy
diff --git a/docs/html/M_MoreDateTime_DateTimeRange__ctor_2.htm b/docs/html/M_MoreDateTime_DateTimeRange__ctor_2.htm
index cb87b27..3812618 100644
--- a/docs/html/M_MoreDateTime_DateTimeRange__ctor_2.htm
+++ b/docs/html/M_MoreDateTime_DateTimeRange__ctor_2.htm
@@ -12,9 +12,9 @@
- DateTimeRange(DateTime, DateTime) Constructor
-
-
+ DateTimeRange(DateOnly, DateOnly) Constructor
+
+
@@ -86,7 +86,7 @@
- Date Time Range(Date Time, Date Time) Constructor
+ Date Time Range(Date Only, Date Only) Constructor
Initializes a new instance of the DateTimeRange class.
@@ -95,18 +95,18 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0VB UsageDim startTime As DateTime
-Dim endTime As DateTime
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim startDateOnly As DateOnly
+Dim endDateOnly As DateOnly
-Dim instance As New DateTimeRange(startTime,
- endTime)
C++public:
+Dim instance As New DateTimeRange(startDateOnly,
+ endDateOnly)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
+ DateOnly startDateOnly,
+ DateOnly endDateOnly
+)ASP.NETNo code example is currently available or this language may not be supported.
Parameters
diff --git a/docs/html/M_MoreDateTime_DateTimeRange__ctor_3.htm b/docs/html/M_MoreDateTime_DateTimeRange__ctor_3.htm
new file mode 100644
index 0000000..6a1a487
--- /dev/null
+++ b/docs/html/M_MoreDateTime_DateTimeRange__ctor_3.htm
@@ -0,0 +1,169 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateTimeRange(DateTime, DateTime) Constructor
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Time Range(Date Time, Date Time) Constructor
+
+ Initializes a new instance of the DateTimeRange class.
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim startDateTime As DateTime
+Dim endDateTime As DateTime
+
+Dim instance As New DateTimeRange(startDateTime,
+ endDateTime)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_DefaultHolidayProvider_IsPublicHoliday.htm b/docs/html/M_MoreDateTime_DefaultHolidayProvider_IsPublicHoliday.htm
index 39b8a41..200059e 100644
--- a/docs/html/M_MoreDateTime_DefaultHolidayProvider_IsPublicHoliday.htm
+++ b/docs/html/M_MoreDateTime_DefaultHolidayProvider_IsPublicHoliday.htm
@@ -95,9 +95,9 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public bool IsPublicHoliday(
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public bool IsPublicHoliday(
DateOnly date,
- CultureInfo cultureInfo
+ CultureInfo? cultureInfo
)
VB UsageDim instance As DefaultHolidayProvider
Dim date As DateOnly
Dim cultureInfo As CultureInfo
diff --git a/docs/html/M_MoreDateTime_DefaultHolidayProvider_IsPublicHoliday_1.htm b/docs/html/M_MoreDateTime_DefaultHolidayProvider_IsPublicHoliday_1.htm
index e41c923..6e27cf6 100644
--- a/docs/html/M_MoreDateTime_DefaultHolidayProvider_IsPublicHoliday_1.htm
+++ b/docs/html/M_MoreDateTime_DefaultHolidayProvider_IsPublicHoliday_1.htm
@@ -95,9 +95,9 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public bool IsPublicHoliday(
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public bool IsPublicHoliday(
DateTime date,
- CultureInfo cultureInfo
+ CultureInfo? cultureInfo
)
VB UsageDim instance As DefaultHolidayProvider
Dim date As DateTime
Dim cultureInfo As CultureInfo
diff --git a/docs/html/M_MoreDateTime_DefaultHolidayProvider_NumberOfKnownHolidays.htm b/docs/html/M_MoreDateTime_DefaultHolidayProvider_NumberOfKnownHolidays.htm
index d0cfc69..f325081 100644
--- a/docs/html/M_MoreDateTime_DefaultHolidayProvider_NumberOfKnownHolidays.htm
+++ b/docs/html/M_MoreDateTime_DefaultHolidayProvider_NumberOfKnownHolidays.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public int NumberOfKnownHolidays(
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public int NumberOfKnownHolidays(
int year,
CultureInfo? cultureInfo = null
)
VB UsageDim instance As DefaultHolidayProvider
diff --git a/docs/html/M_MoreDateTime_DefaultHolidayProvider__ctor.htm b/docs/html/M_MoreDateTime_DefaultHolidayProvider__ctor.htm
index b8dc9c2..f3774cd 100644
--- a/docs/html/M_MoreDateTime_DefaultHolidayProvider__ctor.htm
+++ b/docs/html/M_MoreDateTime_DefaultHolidayProvider__ctor.htm
@@ -93,7 +93,7 @@
Definition
- Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public DefaultHolidayProvider()
VB UsageDim instance As New DefaultHolidayProvider()
C++public:
+ Namespace: MoreDateTime
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public DefaultHolidayProvider()
VB UsageDim instance As New DefaultHolidayProvider()
C++public:
DefaultHolidayProvider()
ASP.NETNo code example is currently available or this language may not be supported.
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_Add.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_Add.htm
index 317a3d7..39ac4d5 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_Add.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_Add.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static DateOnly Add(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim me As DateOnly
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddHours.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddHours.htm
index eafd54f..452dde4 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddHours.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddHours.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static DateOnly AddHours(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim me As DateOnly
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddMilliseconds.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddMilliseconds.htm
index 53cc686..0252e65 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddMilliseconds.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddMilliseconds.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static DateOnly AddMilliseconds(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim me As DateOnly
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddMinutes.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddMinutes.htm
index 9e2b807..abe241e 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddMinutes.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddMinutes.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static DateOnly AddMinutes(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim me As DateOnly
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddSeconds.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddSeconds.htm
index 616a187..6b47b1d 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddSeconds.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddSeconds.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static DateOnly AddSeconds(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim me As DateOnly
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddTicks.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddTicks.htm
index cf911dd..f6d36e8 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddTicks.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddTicks.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static DateOnly AddTicks(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim me As DateOnly
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddWeeks.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddWeeks.htm
index a53e683..e3b2948 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddWeeks.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_AddWeeks.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static DateOnly AddWeeks(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim me As DateOnly
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_Difference.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_Difference.htm
new file mode 100644
index 0000000..426f854
--- /dev/null
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_Difference.htm
@@ -0,0 +1,179 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateOnlyExtensions.Difference Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Only ExtensionsDifference Method
+
+ Calculates the difference of two DateOnlyRanges. If the two ranges do not overlap, the result is
+ the first DateOnlyRange. Otherwise, the result is the first DateOnlyRange without where both ranges overlap.
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public static List<DateOnlyRange> Difference(
+ this DateOnlyRange a,
+ DateOnlyRange? b
+)
VB UsageDim a As DateOnlyRange
+Dim b As DateOnlyRange
+Dim returnValue As List(Of DateOnlyRange)
+
+returnValue = a.Difference(b)
C++public:
+[ExtensionAttribute]
+static List<DateOnlyRange^>^ Difference(
+ DateOnlyRange^ a,
+ DateOnlyRange^ b
+)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- a DateOnlyRange
- The first range
- b DateOnlyRange
- The second range
Return Value
ListDateOnlyRange
A list of DateOnlyRangeUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type DateOnlyRange. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_Distance.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_Distance.htm
index d893fe6..a95cfa4 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_Distance.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_Distance.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static TimeSpan Distance(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim startDate As DateOnly
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_DoesOverlap.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_DoesOverlap.htm
new file mode 100644
index 0000000..e1b5e2d
--- /dev/null
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_DoesOverlap.htm
@@ -0,0 +1,178 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateOnlyExtensions.DoesOverlap Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Only ExtensionsDoes Overlap Method
+
+ Verifies if DateOnlyRange a overlapps with DateOnlyRange b.
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public static bool DoesOverlap(
+ this DateOnlyRange a,
+ DateOnlyRange? b
+)
VB UsageDim a As DateOnlyRange
+Dim b As DateOnlyRange
+Dim returnValue As Boolean
+
+returnValue = a.DoesOverlap(b)
C++public:
+[ExtensionAttribute]
+static bool DoesOverlap(
+ DateOnlyRange^ a,
+ DateOnlyRange^ b
+)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- a DateOnlyRange
- The DateOnlyRange to verify a possible overlap
- b DateOnlyRange
- The DateOnlyrange to verify with
Return Value
Boolean
A bool.Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type DateOnlyRange. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EndOfMonth.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EndOfMonth.htm
index 174818d..54037ca 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EndOfMonth.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EndOfMonth.htm
@@ -18,7 +18,7 @@
-
+
@@ -88,14 +88,14 @@
Date Only ExtensionsEnd Of Month Method
- Returns a DateTime object representing the first day of the current month
+ Returns a DateTime object representing the last day of the current month
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static DateOnly EndOfMonth(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0VB UsageDim me As DateOnly
Dim returnValue As DateOnly
@@ -104,7 +104,7 @@
[ExtensionAttribute]
static DateOnly EndOfMonth(
DateOnly me
-)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- me DateOnly
- The DateTime value of which the first day is requested
Return Value
DateOnly
A DateTime object with the last day of the month, time members set to 0 (00:00:00)Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type DateOnly. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
+)ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- me DateOnly
- The DateTime value of which the last day is requested
Return Value
DateOnly
A DateTime object with the last day of the month, time members set to 0 (00:00:00)Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type DateOnly. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EndOfWeek.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EndOfWeek.htm
new file mode 100644
index 0000000..1232cee
--- /dev/null
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EndOfWeek.htm
@@ -0,0 +1,178 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DateOnlyExtensions.EndOfWeek Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation for the MoreDateTime library
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This is preliminary documentation and is subject to change.
+
+
+
+
+
+
+ Show/Hide TOC
+
+
+
+
+
+ Date Only ExtensionsEnd Of Week Method
+
+ Returns a DateTime object representing the last day of the current Week
+
+
+
+
+ Definition
+
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public static DateOnly EndOfWeek(
+ this DateOnly me,
+ CultureInfo? cultureInfo = null
+)
VB UsageDim me As DateOnly
+Dim cultureInfo As CultureInfo
+Dim returnValue As DateOnly
+
+returnValue = me.EndOfWeek(cultureInfo)
C++public:
+[ExtensionAttribute]
+static DateOnly EndOfWeek(
+ DateOnly me,
+ CultureInfo^ cultureInfo = nullptr
+)
ASP.NETNo code example is currently available or this language may not be supported.
Parameters
- me DateOnly
- The DateTime value of which the first day is requested
- cultureInfo CultureInfo (Optional)
- The CultureInfo to use for week calculation, can be null for current culture
Return Value
DateOnly
A DateTime object with the last day of the Week, time members set to 0 (00:00:00)Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type DateOnly. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
+
+
+
+ See Also
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateDaysUntil.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateDaysUntil.htm
index 44c8893..d10c418 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateDaysUntil.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateDaysUntil.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static IEnumerable<DateOnly> EnumerateDaysUntil(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public static IEnumerable<DateOnly> EnumerateDaysUntil(
this DateOnly from,
DateOnly to
)
VB UsageDim from As DateOnly
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateHolidaysUntil.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateHolidaysUntil.htm
index f6f8c8b..c4acd6f 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateHolidaysUntil.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateHolidaysUntil.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static IEnumerable<DateOnly> EnumerateHolidaysUntil(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public static IEnumerable<DateOnly> EnumerateHolidaysUntil(
this DateOnly from,
DateOnly to,
CultureInfo? cultureInfo = null
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateInStepsUntil.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateInStepsUntil.htm
index 89592b7..18be2a8 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateInStepsUntil.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateInStepsUntil.htm
@@ -19,7 +19,7 @@
-
+
@@ -96,7 +96,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static IEnumerable<DateOnly> EnumerateInStepsUntil(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public static IEnumerable<DateOnly> EnumerateInStepsUntil(
this DateOnly startDate,
DateOnly endDate,
TimeSpan distance
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateInStepsUntil_1.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateInStepsUntil_1.htm
index 2cfe856..f625b2c 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateInStepsUntil_1.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateInStepsUntil_1.htm
@@ -19,7 +19,7 @@
-
+
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static IEnumerable<DateOnly> EnumerateInStepsUntil(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public static IEnumerable<DateOnly> EnumerateInStepsUntil(
this DateOnly startDate,
DateOnly endDate,
TimeSpan distance,
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateMonthsUntil.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateMonthsUntil.htm
index 8201115..d62a2bf 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateMonthsUntil.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateMonthsUntil.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static IEnumerable<DateOnly> EnumerateMonthsUntil(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public static IEnumerable<DateOnly> EnumerateMonthsUntil(
this DateOnly from,
DateOnly to
)
VB UsageDim from As DateOnly
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateWeekendsUntil.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateWeekendsUntil.htm
index 1fe6876..2735d24 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateWeekendsUntil.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateWeekendsUntil.htm
@@ -95,7 +95,7 @@
Definition
- Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.1.0C#public static IEnumerable<DateOnly> EnumerateWeekendsUntil(
+ Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.2.0C#public static IEnumerable<DateOnly> EnumerateWeekendsUntil(
this DateOnly from,
DateOnly to
)
VB UsageDim from As DateOnly
diff --git a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateWorkdaysUntil.htm b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateWorkdaysUntil.htm
index c026033..3bb3ab3 100644
--- a/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateWorkdaysUntil.htm
+++ b/docs/html/M_MoreDateTime_Extensions_DateOnlyExtensions_EnumerateWorkdaysUntil.htm
@@ -95,7 +95,7 @@
Definition