CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
calendar_week_rule.h
1
2#pragma once
3
4#include <cstdint>
5#include <system/details/enum_meta_info.h>
6
7namespace System { namespace Globalization {
8
10enum class CalendarWeekRule : int32_t
11{
18};
19
20}} // namespace System::Globalization
21
22template<>
23struct EnumMetaInfo<System::Globalization::CalendarWeekRule>
24{
25 static ASPOSECPP_SHARED_API const std::array<std::pair<System::Globalization::CalendarWeekRule, const char16_t*>, 3>& values();
26};
CalendarWeekRule
How to determine first week of the year.
Definition: calendar_week_rule.h:11
@ FirstFourDayWeek
First four days long week of the year is the first one.
@ FirstFullWeek
First full week of the year is the first one.
@ FirstDay
First day of the year starts first week of the year.
Definition: db_command.h:9