using System;var gold = PreciousMetal.Gold;Planet earth = Planet.Earth;Console.WriteLine(gold);Console.WriteLine(earth);enum PreciousMetal { Platinum, Gold, Silver}enum Planet: byte { Mercury = 1, Venus, Earth}