Can we assign values for symbolic constants in enumerations where value assigned for
Is it possible in c#?
If not then please give me the reason?
Is it possible in c#?
If not then please give me the reason?
Code:
enum student
{
UG=10;
PG=100;
}
Comment