Enum वर्ष, उत्पाद, महीने, मौसम आदि जैसे नामित स्थिरांक के एक सेट को संग्रहीत करने के लिए गणना है।
Enum स्थिरांक का डिफ़ॉल्ट मान 0 और वेतन वृद्धि से प्रारंभ होता है। इसमें स्थिरांक का निश्चित सेट होता है और इसे आसानी से पार किया जा सकता है। हालाँकि आप अभी भी स्टार्ट इंडेक्स को बदल सकते हैं और इसे अपनी पसंद के मूल्य के साथ कस्टमाइज़ कर सकते हैं।
निम्नलिखित उदाहरण में, मैंने अनुकूलित मान को डिफ़ॉल्ट 0 के बजाय 20 पर सेट किया है।
उदाहरण
using System; public class Demo { public enum Vehicle { Car =20, Motorcycle, Bus, Truck } public static void Main() { int a = (int)Vehicle.Car; int b = (int)Vehicle.Motorcycle; int c = (int)Vehicle.Bus; int d = (int)Vehicle.Truck; Console.WriteLine("Car = {0}", a); Console.WriteLine("Motorcycle = {0}", b); Console.WriteLine("Bus = {0}", c); Console.WriteLine("Truck = {0}", d); } }
आउटपुट
Car = 20 Motorcycle = 21 Bus = 22 Truck = 23