Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こちらのMSDNドキュメントによると、列挙型の各メンバーをキャストしIntて、対応する0インデックス値を取得できます。Intしかし、0から6の範囲の値をこの列挙型に変換したいと思います。
Int
これはどのように可能ですか?
あなたはそれを逆にキャストすることができます:
int intValue = 1; DayOfWeek dayOfWeek = (DayOfWeek)intValue;