do
{
Console.Write(" <jaar 1582 - 2500>...");
} while(!int.TryParse(Console.ReadLine(), out jaar) && jaar < 1582);
Why doesn't this work in C#?
you can't test a integeren in a do while when there's a tryparse apperently
whats the best way of doing this?
Thank you for your time.