DateAndTime.Minute(DateTime) Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an integer value from 0 through 59 representing the minute of the hour.
public:
static int Minute(DateTime TimeValue);
public static int Minute(DateTime TimeValue);
static member Minute : DateTime -> int
Public Function Minute (TimeValue As DateTime) As Integer
- TimeValue
- DateTime
Required. A Date
value from which you want to extract the minute.
An integer value from 0 through 59 representing the minute of the hour.
This example uses the Minute
function to obtain the minute of the hour from a specified time. In the development environment, the time literal is displayed in short time format using the locale settings of your code.
Dim thisTime As Date
Dim thisMinute As Integer
thisTime = #4:35:17 PM#
thisMinute = Minute(thisTime)
' thisMinute now contains 35.
You can also obtain the minute of the hour by calling DatePart
and specifying DateInterval.Minute
for the Interval
argument.
Product | Versions |
---|---|
.NET | Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10 |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: