Advertisement
Guest User

Untitled

a guest
Jul 18th, 2015
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. List<string> whiteListed = new List<string>();  // Suppose this is filled.
  2. string wordTriggered = whiteListed[0];  // Retrieve the first occourence.
  3. Console.WriteLine(wordTriggered);  // Display it on the console window. (Might simply skip this, it's just a a show off)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement