Verifica di un anno bisestile:
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(verificaBisestile(2008));
}
private static Boolean verificaBisestile(int anno)
{
Boolean result = false;
if (((anno % 4 == 0 && anno % 100 != 0) || anno % 400 == 0))
{
result = true;
}
return result;
}
}
}