How to get int value from enum in C#
By FoxLearn 11/20/2024 7:33:34 AM 104
In C#, you can get the integer value of an enum by using a simple type cast.
How to get int value from enum in C#?
For example:
enum LicenseType { Free = 1, Trial = 2, Enterprise = 3 }
Just cast the enum, e.g.
LicenseType lic = LicenseType.Free; // Cast the enum value to int to get its integer representation int licValue = (int)lic;
The default underlying type for enums in C# is int
, so casting an enum to int
will work in most cases to retrieve its integer value.
Enums in C# can have different underlying types, such as `uint`, `long`, or `ulong`. If an enum uses one of these types, it should be cast to the specific underlying type of the enum, rather than `int`.
For example: Enum of long values in C#
public enum Country : long { None, Canada, UnitedStates = (long)int.MaxValue + 1; } // val will be equal to the *long* value int.MaxValue + 1 long val = (long)Country.UnitedStates;
You can assign long
values to enum members, but you cannot assign an enum value directly to an integral type without a cast.
- How to fix 'Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on'
- How to use BlockingCollection in C#
- Calculating the Distance Between Two Coordinates in C#
- Could Not Find an Implementation of the Query Pattern
- Fixing Invalid Parameter Type in Attribute Constructor
- Objects added to a BindingSource’s list must all be of the same type
- How to use dictionary with tuples in C#
- How to convert a dictionary to a list in C#
Categories
Popular Posts
11 Things You Didn't Know About Cloudflare
12/19/2024