using System.Collections.Generic;
using System.Threading.Tasks;
public static void Main(string[] args)
Console.WriteLine("Enter the date of birth (dd-mm-yyyy): ");
string dateOfBirth=Console.ReadLine();
Console.WriteLine(calculateAge(dateOfBirth));
public static int calculateAge(string dateOfBirth)
DateTime today = DateTime.Now;
int year = DateTime.Now.Year;
int length=dateOfBirth.Length;
string dcs = dateOfBirth.Substring(6,4);
string csd=dateOfBirth.Substring(3,2);