Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. using System;
  2. namespace EnumMedium
  3. {
  4. class Program
  5. {
  6. public enum Gün : byte { BazarErtəsi = 1, ÇərşənbəAxşamı, Çərşənbə, CüməAxşamı, Cümə, Şənbə, Bazar };
  7. static void Main(string[] args)
  8. {
  9. Gün bugün = Gün.Çərşənbə;
  10. Console.WriteLine(bugün);
  11. Console.ReadLine();
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement