I cannot figure out how to read user-input in a loop (with Console.ReadLine). I\'m trying to create a note that lets me store what ever the user inputs, and exi
`List al = new List(); //list to store string values
while(true)
{
string f = Console.ReadLine();
if(f == null) //check if string is null or not
{
break;
}
else
al.Add(f); //add strings to list
}`