Advertisement
Guest User

Untitled

a guest
Aug 21st, 2014
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public Form1()
  2. {
  3. InitializeComponent();
  4. Dictionary<char, string> dictionary = new Dictionary<char, string>();
  5. dictionary.Add('a', "%");
  6. dictionary.Add('A'," %");
  7. dictionary.Add('b', " &");
  8. dictionary.Add('B', " &");
  9. dictionary.Add('c', " <");
  10. dictionary.Add('C', " <");
  11. }
  12.  
  13. private void button_Click(object sender, EventArgs e)
  14. {
  15. second_richtextbox= (???)
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement