How do i get this to work?

              //int x;
                   Console.WriteLine("Please Enter a number");
            int Entry = Console.ReadLine();
            //string Entry = int.TryParse(Console.ReadLine(), out x);(what ive tired)

            for (int i = x; i < 10; i++)
            {
                Console.WriteLine($"Go up by {Entry}");
            }}
error: Cannot implicitly convert type 'bool' to 'string'
i clicked on the error and it told me to go here
https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-messages/cs0029?f1url=%3FappId%3Droslyn%26k%3Dk(CS0029)
here i see are only ints being converted to long is what im doing even possible?
Was this page helpful?