I'm making a console in .Net C# Console and I can't figure out how I would have the user input 2 variables.
I'm making a ping system where the user inputs "ping " and it would ping that ip.
Example
Console.Write($"{Environment.UserName}@root~ $ ");
input = Console.ReadLine();
if (input == $"ping")
{
goto ping;
}