How to convert from System.Enum to base integer? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T01:57:17Zhttp://stackoverflow.com/feeds/question/908543http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/908543/how-to-convert-from-system-enum-to-base-integer2How to convert from System.Enum to base integer?orj2009-05-26T01:17:29Z2009-05-27T01:18:44Z
<p>I'd like to create a generic method for converting any System.Enum derived type to its corresponding integer value, without casting and preferably without parsing a string.</p>
<p>Eg, what I want is something like this:</p>
<pre><code>// Trivial example, not actually what I'm doing.
class Converter
{
int ToInteger(System.Enum anEnum)
{
(int)anEnum;
}
}
</code></pre>
<p>But this doesn't appear to work. Resharper reports that you can not cast expression of type 'System.Enum' to type 'int'.</p>
<p>Now I've come up with this solution but I'd rather have something more efficient.</p>
<pre><code>class Converter
{
int ToInteger(System.Enum anEnum)
{
return int.Parse(anEnum.ToString("d"));
}
}
</code></pre>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/908543/how-to-convert-from-system-enum-to-base-integer/908556#9085560Answer by jpoh for How to convert from System.Enum to base integer?jpoh2009-05-26T01:23:33Z2009-05-26T01:23:33Z<p>Casting from a <code>System.Enum</code> to an <code>int</code> works fine for me (it's also on the <a href="http://msdn.microsoft.com/en-us/library/sbbt4032.aspx" rel="nofollow">MSDN</a>). Perhaps it's a Resharper bug.</p>
http://stackoverflow.com/questions/908543/how-to-convert-from-system-enum-to-base-integer/908590#9085902Answer by MartinStettner for How to convert from System.Enum to base integer?MartinStettner2009-05-26T01:37:09Z2009-05-26T01:37:09Z<p>If you don't want to cast,</p>
<pre><code>Convert.ToInt32()
</code></pre>
<p>could do the trick. Your function has the drawback that you won't be able to pass actual enumeration values to it:</p>
<pre><code>Converter.ToInteger(MyEnum.MyEnumConstant); // Will give you an error
</code></pre>
<p>since enumerations are value types (and internally represented only by integer constants) while System.Enum is a reference type. So actual enumerations don't "really" derive from Syste.Enum().</p>
<p>By the way, this is also, why your first version is not correct. You cannot cast this base class to an int.</p>
http://stackoverflow.com/questions/908543/how-to-convert-from-system-enum-to-base-integer/908592#9085922Answer by BFree for How to convert from System.Enum to base integer?BFree2009-05-26T01:37:45Z2009-05-26T01:51:02Z<p>I got it to work by casting to an object and then to an int:</p>
<pre><code>public static class EnumExtensions
{
public static int ToInt(this Enum enumValue)
{
return (int)((object)enumValue);
}
}
</code></pre>
<p>This is ugly and probably not the best way. I'll keep messing with it, to see if I can come up with something better....</p>
<p>EDIT: Was just about to post that Convert.ToInt32(enumValue) works as well, and noticed that MartinStettner beat me to it.</p>
<pre><code>public static class EnumExtensions
{
public static int ToInt(this Enum enumValue)
{
return Convert.ToInt32(enumValue);
}
}
</code></pre>
<p>Test: </p>
<pre><code>int x = DayOfWeek.Friday.ToInt();
Console.WriteLine(x); // results in 5 which is int value of Friday
</code></pre>
<p>EDIT 2: In the comments, someone said that this only works in C# 3.0. I just tested this in VS2005 like this and it worked:</p>
<pre><code>public static class Helpers
{
public static int ToInt(Enum enumValue)
{
return Convert.ToInt32(enumValue);
}
}
static void Main(string[] args)
{
Console.WriteLine(Helpers.ToInt(DayOfWeek.Friday));
}
</code></pre>
http://stackoverflow.com/questions/908543/how-to-convert-from-system-enum-to-base-integer/908600#9086000Answer by jrista for How to convert from System.Enum to base integer?jrista2009-05-26T01:42:45Z2009-05-27T01:18:44Z<p>Don't forget that the Enum type itself has a bunch of static helper functions in it. If all you want to do is convert an instance of the enum to its corresponding integer type, then casting is probably the most efficient way.</p>
<p>I think ReSharper is complaining because Enum isn't an enumeration of any particular type, and enumerations themselves derive from a scalar valuetype, not Enum. If you need adaptable casting in a generic way, I would say this could suite you well (note that the enumeration type itself is also included in the generic:</p>
<pre><code>public static EnumHelpers
{
public static T Convert<T, E>(E enumValue)
{
return (T)enumValue;
}
}
</code></pre>
<p>This could then be used like so:</p>
<pre><code>public enum StopLight: int
{
Red = 1,
Yellow = 2,
Green = 3
}
// ...
int myStoplightColor = EnumHelpers.Convert<int, StopLight>(StopLight.Red);
</code></pre>
<p>I can't say for sure off the top of my head, but the above code might even be supported by C#'s type inference, allowing the following:</p>
<pre><code>int myStoplightColor = EnumHelpers.Convert<int>(StopLight.Red);
</code></pre>
http://stackoverflow.com/questions/908543/how-to-convert-from-system-enum-to-base-integer/909884#9098840Answer by Luke for How to convert from System.Enum to base integer?Luke2009-05-26T09:53:54Z2009-05-26T09:53:54Z<p>Why do you need to reinvent the wheel with a helper method? It's perfectly legal to cast an <code>enum</code> value to its underlying type.</p>
<p>It's less typing, and in my opinion more readable, to use...</p>
<pre><code>int x = (int)DayOfWeek.Tuesday;
</code></pre>
<p>...rather than something like...</p>
<pre><code>int y = Converter.ToInteger(DayOfWeek.Tuesday);
// or
int z = DayOfWeek.Tuesday.ToInteger();
</code></pre>