Difference between revisions of "Switch"

esse quam videri
Jump to: navigation, search
(Example)
(Example)
Line 19: Line 19:
 
         break;
 
         break;
  
     case "S:"
+
     case "S":
 
         player.moveSouth();
 
         player.moveSouth();
 
         break;
 
         break;

Revision as of 18:14, 21 August 2019

Definition

Relevance

Example

Below is an example of a switch for an adventure game

console.WriteLine("You awake and find yourself at an intersection, which path will you take?");
console.WriteLine("Use N, S, E, or W for North, South, East, or West");

choice = console.ReadLine();

switch(choice)
{
    case "N":
        player.moveNorth();
        break;

    case "S":
        player.moveSouth();
        break;

    case "E":
        player.moveEast();
        break;

    case "W":
        player.moveWest();
        break;
}

Resources

See also

Notes

External Links