DateTimeKind 列挙型

定義

DateTime オブジェクトが表す時刻の種類 (現地時刻、世界協定時刻 (UTC)、または、そのいずれでもない) を指定します。

public enum class DateTimeKind
public enum DateTimeKind
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public enum DateTimeKind
type DateTimeKind = 
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type DateTimeKind = 
Public Enum DateTimeKind
継承
DateTimeKind
属性

フィールド

Local 2

現地時刻であることを表します。

Unspecified 0

現地時刻と世界協定時刻 (UTC) のいずれも指定されていないことを表します。

Utc 1

UTC 時刻であることを表します。

注釈

列挙体の DateTimeKind メンバーは、 プロパティによって DateTime.Kind 返されます。

列挙体の DateTimeKind メンバーは、ローカル時刻と協定世界時 (UTC) の間の変換操作で使用されますが、比較演算や算術演算では使用されません。 時刻変換の詳細については、「 タイム ゾーン間の時刻の変換」を参照してください。

適用対象