Advertisement
KodingKid

C# Enum Categories for shopping

Apr 10th, 2021
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. enum Categories
  2. {
  3. Toys = Row 1
  4. Food = Row 2 and 3
  5. Drinks = Row 3 and 4
  6. Pharmaceuticals = Row 4
  7. Clothes = Row 5
  8. }
  9. Console.WriteLine(Toys) //Prints "Row 1"
  10. Console.WriteLine(Food) //Prints "Row 2 and 3"
  11. Console.WriteLine(Drinks) //Prints "Row 3 and 4"
  12. Console.WriteLine(Pharmaceuticals) //Prints "Row 4"
  13. Console.WriteLine(Clothes) //Prints "Row 5"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement