Guest User

Untitled

a guest
Jun 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. class CString
  2. {
  3. private string value;
  4. private char replacement;
  5.  
  6. public CString(params byte[] chars)
  7. {
  8. // do stuff
  9. }
  10. }
  11.  
  12. class Program
  13. {
  14. static void Main(string[] args)
  15. {
  16. Dictionary<CString, char> dict = new Dictionary<CString, char>()
  17. {
  18. { new CString(152, 147), 'A' }
  19. };
Add Comment
Please, Sign In to add comment