我需要帮助我在学校得到的工作......我正在尝试制作一个或多个枚举,它将在内存中包含一个月中的天数、月份名称和数字的信息本月的。
另外,我的老师说所有信息都必须在我的代码中......没有数据库或其他类似的东西。-_-
经验:
public enum list
{
month = "nbdays" && "montnumber" && "otherinformation";
//Total bad syntaxe I know its just an exemple of how id like it to work.
}
另一个经验:
public enum list
{
enum month
{
numdays = blabla
monthnumber = bleble
otherinfo = blublu
}
}
注意:我真的不想使用数组,因为它不符合人体工程学 X_X 但如果您认为它是最好的解决方案,我会选择它。