vb.net FormatDateTime 将日期和时间格式化为指定格式的字符串实例代码
时间: 2023-11-07 09:15:50 浏览: 225
vue时间格式化实例代码
5星 · 资源好评率100%
以下一个示例代码,可以使用 VB.NET 中的 FormatDateTime 函数将日期和时间格式化为指定格式的字符串:
```
Dim myDate As Date = #1/1/2022 14:30:15#
Dim formattedDate As String = FormatDateTime(myDate, DateFormat.LongDate)
Console.WriteLine(formattedDate) '输出 "Saturday, January 1, 2022"
```
在这个示例中,我们首先定义了一个日期对象 `myDate`,它包含了日期和时间信息。接下来,我们调用 `FormatDateTime` 函数,并将日期对象和一个 `DateFormat` 枚举值作为参数传递给它。`DateFormat` 枚举值指定了要使用的日期和时间格式。在本例中,我们将其设置为 `LongDate`,表示使用长日期格式。
最后,我们将返回的格式化字符串输出到控制台。
请注意,`FormatDateTime` 函数还可以接受第二个参数,用于指定时间格式。例如,如果我们想要使用 24 小时制格式来显示时间,可以将第二个参数设置为 `DateFormat.LongTime`。如果我们只想显示日期而不显示时间,可以将第二个参数设置为 `DateFormat.LongDate`。
阅读全文