Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. using System;
  2. class MainClass
  3. {
  4.     enum MyEnum
  5.     {
  6.         one = 1, two = 2, three = 3
  7.     }
  8.     public static void Main(string[] args)
  9.     {
  10.         Console.WriteLine(MyEnum.one - MyEnum.two);
  11.         Console.WriteLine(MyEnum.one + MyEnum.two);
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement