I was trying to make a small birthday (years) calculator, and somehow the value after the timespan disappears.
I've tried converting to DateTime and then to double but still no effect.
DateTime today = DateTime.Today;
Console.WriteLine("Type your birthday: ");
DateTime b = DateTime.Parse(Console.ReadLine());
TimeSpan age = (today - b);
string s = age.ToString();
double final = double.Parse(s) / 365.2425;
Console.WriteLine("You have" + final + "years");