Get start of the month date.

Namespace: MonoSoftware.MonoX.Extensions
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static DateTime StartOfMonth(
	this DateTime dateTime
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function StartOfMonth ( 
	dateTime As DateTime
) As DateTime
Visual C++
public:
[ExtensionAttribute]
static DateTime StartOfMonth(
	DateTime dateTime
)
F#
static member StartOfMonth : 
        dateTime : DateTime -> DateTime 

Parameters

dateTime
Type: System..::..DateTime
Day in month date.

Return Value

Type: DateTime
Start of the month date.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DateTime. 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