Guest User

Untitled

a guest
Dec 13th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. Constant string str1 = "VAL1";
  2. Constant string str2 = "VAL2";
  3.  
  4. public static class MyConstants
  5. {
  6. public const string str1 = "VAL1";
  7. public const string str2 = "VAL2";
  8.  
  9. private MyConstants() { } // So it can't be instantiated by consumers of the class
  10. }
Add Comment
Please, Sign In to add comment