So I've only been writing in C# for about a day now, and I've been searching the internet for almost an hour and can't seem to find something like my code that actually works. Looks like this:
do
{
Console.WriteLine("Play again?");
string play = Console.ReadLine();
}
while (play == "yes");
Is this not possible, do I need to find a different method to do this? Anything would help, thank you.