Guest User

Untitled

a guest
Jul 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class Example1
  2. {
  3. public enum MyEnum
  4. {
  5. None,
  6. One,
  7. Two,
  8. Three
  9. }
  10.  
  11. public int Method1()
  12. {
  13. MyEnum myEnum = MyEnum.One;
  14. Console.WriteLine("myEnum " + myEnum);
  15. return (int)myEnum;
  16. }
  17. }
Add Comment
Please, Sign In to add comment