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.
ヘッダーの内外で毎日ローテーションしたい 5 色の配列があります。C#でこれを構文的に行うにはどうすればよいですか? Javascript で簡単に記述できますが、C# では記述できません。
色を回転させる方法として、現在の日を使用できます。
var color = colors[DateTime.Now.DayOfYear % 5];