Is it possible to define an implicit conversion of enums in c#?
something that could achieve this?
public enum MyEnum
{
one = 1, two = 2
}
MyEnum number = MyEnum.one;
long i = number;
Edit:
If not, why not!! :)
|
feedback
|
|
If you define the base of the enum as a long then you can perform explicit conversion. I don't know if you can use implicit conversions as enums cannot have methods defined on them.
Also, be aware with this that an uninitalised enumeration will default to the 0 value, or the first item - so in the situation above it would probably be best to define | |||||||||||||||||
feedback
|
|
There is a solution. Consider the following:
The above offers implicit conversion:
This is a fair bit more work than declaring a normal enum (though you can refactor some of the above into a common generic base class). You can go even further by having the base class implement IComparable & IEquatable, as well as adding methods to return the value of DescriptionAttributes, declared names, etc, etc. I wrote a base class (RichEnum<>) to handle most fo the grunt work, which eases the above declaration of enums down to:
The base class (RichEnum) is listed below.
| |||||||||||
feedback
|
|
You can't do implict conversions (except for zero), and you can't write your own instance methods - however, you can probably write your own extension methods:
This doesn't give you a lot, though (compared to just doing an explicit cast). One of the main times I've seen people want this is for doing | |||||||
feedback
|
|
You probably could, but not for the enum (you can't add a method to it). You could add an implicit conversion to you own class to allow an enum to be converted to it,
The question would be why? In general .Net avoids (and you should too) any implicit conversion where data can be lost. | |||
|
feedback
|
|
I adapted Mark's excellent RichEnum generic baseclass. Fixing
Kudos to Mark for the splendid idea + implementation, here's to you all:
A sample of usage that I ran on mono:
Producing the output
[1] mono 2.6.7 requiring an extra explicit cast that is not required when using mono 2.8.2... | |||||
feedback
|
|
You cannot declare implicit conversions on enum types, because they can't define methods. The C# implicit keyword compiles into a method starting with 'op_', and it wouldn't work in this case. | |||
|
feedback
|
|
Introducing implicit conversions for enum types would break type safety, so I'd not recommend to do that. Why would you want to do that? The only use case for this I've seen is when you want to put the enum values into a structure with a pre-defined layout. But even then, you can use the enum type in the structure and just tell the Marshaller what he should do with this. | |||
|
feedback
|