本文整理汇总了VB.NET中System.DayOfWeek枚举的典型用法代码示例。如果您正苦于以下问题:VB.NET DayOfWeek枚举的具体用法?VB.NET DayOfWeek怎么用?VB.NET DayOfWeek使用的例子?那么恭喜您, 这里精选的枚举代码示例或许可以为您提供帮助。
在下文中一共展示了DayOfWeek枚举的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: Sample
' This example demonstrates the DateTime.DayOfWeek property
Class Sample
Public Shared Sub Main()
' Assume the current culture is en-US.
' Create a DateTime for the first of May, 2003.
Dim dt As New DateTime(2003, 5, 1)
Console.WriteLine("Is Thursday the day of the week for {0:d}?: {1}", _
dt, dt.DayOfWeek = DayOfWeek.Thursday)
Console.WriteLine("The day of the week for {0:d} is {1}.", dt, dt.DayOfWeek)
End Sub
End Class
输出:
Is Thursday the day of the week for 5/1/2003?: True The day of the week for 5/1/2003 is Thursday.