elena1234

What are enums in C#

Dec 10th, 2021 (edited)
668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.76 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Enums
  4.     class Program
  5.     {
  6.         static void Main(string[] args)
  7.         {
  8.             Console.WriteLine($"{Planets.Earth} is the #{(int)Planets.Earth} with radius {(int)PlanetsRadius.Earth}");
  9.         }
  10.  
  11.         enum Planets
  12.         {
  13.             Mercury = 1,
  14.             Venus = 2,
  15.             Earth = 3,
  16.             Mars = 4,
  17.             Jupiter = 5,
  18.             Saturn = 6,
  19.             Uranus = 7,
  20.             Neptune = 8
  21.         }
  22.  
  23.         enum PlanetsRadius
  24.         {
  25.             Mercury = 2439,
  26.             Venus = 6051,
  27.             Earth = 6371,
  28.             Mars = 3389,
  29.             Jupiter = 69911,
  30.             Saturn = 58232,
  31.             Uranus = 25362,
  32.             Neptune = 24622
  33.         }
  34.     }
  35. }
  36.  
Add Comment
Please, Sign In to add comment