本篇内容主要讲解“C#实现中国农历日历操作类的代码分享”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C#实现中国农历日历操作类的代码分享”吧!
private static int leapDays(int y)
{
if (leapMonth(y) != 0)
{
if ((lunarInfo[y - 1900] & 0x10000) != 0)
return 30;
else
return 29;
}
else
return 0;
}
private static int leapMonth(int y)
{
return (int)(lunarInfo[y - 1900] & 0xf);
}
private static int monthDays(int y, int m)
{
if ((lunarInfo[y - 1900] & (0x10000 >> m)) == 0)
return 29;
else
return 30;
}
private static String AnimalsYear(int y)
{
return Animals[(y - 4) % 12];
}
private static String cyclicalm(int num)
{
return (Gan[num % 10] + Zhi[num % 12]);
}
private static String cyclical(int y)
{
int num = y - 1900 + 36;
return (cyclicalm(num));
}
到此,相信大家对“C#实现中国农历日历操作类的代码分享”有了更深的了解,不妨来实际操作一番吧!这里是天达云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!