Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

trygetvalue c#

 //validation
       
  while(!(jukeBoxSongs.TryGetValue(userInput,out user)))
   {
     Console.WriteLine("tell the user what they did wrong");
     Console.WriteLine(" restate the question");
     userInput = Console.ReadLine();//catch the users response with the 
    //same string var you used before 

    }
 
PREVIOUS NEXT
Tagged: #trygetvalue
ADD COMMENT
Topic
Name
3+4 =