阅读398 返回首页    go 阿里云 go 技术社区[云栖]


C# 判断是不是闰年


if (intYear % 400 == 0 || (intYear % 4 == 0 && intYear % 100 != 0))


最后更新:2017-04-03 12:54:19

  上一篇:go 隐藏GridControl的“Drag a column header here to group by that column”
  下一篇:go System.InvalidOperationException: 集合已修改;可能无法执行枚举操作。