Answer Posted / muthukumar
The enum keyword is used to declare an enumeration, a
distinct type consisting of a set of named constants called
the enumerator list. Every enumeration type has an
underlying type, which can be any integral type except
char.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Is .net and c# the same?
What is dependency in software?
What is mvc firstordefault?
What is the difference between CreateObject() and GetObject()?
what are the different ways a method can be overloaded?
What is the difference between field and variable in c#?
Is c# a keyword?
Why are strings in c# immutable?
If I have more than one version of one assemblies, then how'll I use old version (how/where to specify version number?)in my application?
Is enum a class c#?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
What is the usage of transponders?
Explain the various types of classes used in c#?
Define parsing?
Why c# is called c sharp?