[asp.net core 3.0 mvc] 新手问题:在model中创建一个enum,有几个值是数字+中文,报错,该如何正确书写?
public enum Graduation
{
2019年12月,
2020年6月,
2020年12月,
2021年6月,
2021年12月,
2022年6月,
2022年12月,
2023年6月,
2023年12月
}
报错,value 前后加单引号,双引号都报错,该如何正确书写该enum
别数字开头,如这般
public enum Graduation
{
G2019年12月,
G2020年6月,
G2020年12月,
G2021年6月,
G2021年12月,
G2022年6月,
G2022年12月,
G2023年6月,
G2023年12月
}