Relative Content

Tag Archive for cwhile-loop

Infinite While-Loop

I am creating a simple command-line program and want the user to hit “enter” to begin the program. I am doing some input validation, but for some reason my while loop keeps getting caught in an infinite loop.

while(true) loop in C# is not working properly

namespace SharpenYourPencil { internal class Elephant { public string Name; public int EarSize; public void WhoAmI() { Console.WriteLine($”My name is {Name}.”); Console.WriteLine($”My ears {EarSize} inches tall.”); } } internal class Program { static void Main(string[] args) { Elephant lucinda = new Elephant() { Name = “Lucinda”, EarSize = 33 }; Elephant lloyd = new Elephant() […]