System.DayOfWeek 枚举

上一篇:System.DateTimeKind 类 下一篇:System.DBNull 类

方法描述

指定一周的某天。

语法定义(C# System.DayOfWeek 枚举 的用法)

[SerializableAttribute]
[ComVisibleAttribute(true)]
public enum DayOfWeek

构造函数

构造函数名称 构造函数描述

成员/方法

方法名称 方法描述

提示和注释

在每周有七天的日历中,DayOfWeek 枚举表示一周中的某天。 此枚举中的常量值的范围为 DayOfWeek.Sunday 到 DayOfWeek.Saturday。 如果强制转换为整数,则此枚举值的范围为零(表示 DayOfWeek.Sunday)到六(表示 DayOfWeek.Saturday)。

当最好是对一周的某天进行强类型指定时,该枚举很有用。 例如,该枚举是 DateTime.DayOfWeek 属性的属性值类型。

DayOfWeek 枚举的成员未进行本地化。 若要返回一周中某天的本地化名称,请用“ddd”或“dddd”格式字符串调用 DateTime.ToString(String) 或 DateTime.ToString(String, IFormatProvider) 方法。 前一格式字符串用于生成简写的星期几名称;后一格式字符串用于生成完整的星期几名称。

System.DayOfWeek 枚举例子

下面的示例演示 DateTime.DayOfWeek 属性和 DayOfWeek 枚举。

// This example demonstrates the DateTime.DayOfWeek property
using System;

class Sample 
{
    public static void Main() 
    {
// Assume the current culture is en-US.
// Create a DateTime for the first of May, 2003.
    DateTime dt = 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);
    }
}
/*
This example produces the following results:

Is Thursday the day of the week for 5/1/2003?: True
The day of the week for 5/1/2003 is Thursday.
*/

继承层次结构

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

线程安全

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1 受以下版本支持:

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。

相关资源

System 命名空间
MSDN
上一篇:System.DateTimeKind 类 下一篇:System.DBNull 类