so my problem is that when the user enters an letter it kind of crashes my console app haha now i want to put a validation in my code that will ask them to re-enter every time they enter a letter that is not a number but am having trouble doing so :( i have other methods that i would like to implement the answer on to as well, thank you guys.
{
double r;
Console.WriteLine("Please enter the radius: ");
r = Convert.ToDouble(Console.ReadLine());
double areaCircle = pi * (r * r);
Console.WriteLine("Radius: {0}, Area: {1}", r, areaCircle);
Console.ReadLine();
}