Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public class Authenticator
  2. {
  3. private Dictionary<string, string> dictionary = new Dictionary<string, string>();
  4.  
  5. static void Main()
  6. {
  7. dictionary.Add("bob", "bobpassword");
  8. dictionary.Add("sam", "sampassword");
  9. dictionary.Add("mac", "macpassword");
  10. dictionary.Add("lee", "leepassword");
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement