Get Integral Value of Boxed Enum - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T06:35:38Z http://stackoverflow.com/feeds/question/746905 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/746905/get-integral-value-of-boxed-enum 2 Get Integral Value of Boxed Enum Jonathan C Dickinson 2009-04-14T09:43:09Z 2009-04-14T11:08:08Z <p>Hey All,</p> <p>I have decided it is impossible to do the following (equivalent) enum operations via reflection - as the Enum class has no operators, and nor does the emitted code expose any operators:</p> <pre><code>object boxedEnum = MyEnum.Flag1 | MyEnum.Flag2; boxedEnum &amp;= ~MyEnum.Flag2; // Remove the flag. </code></pre> <p>So I am currently doing the following (equivalent):</p> <pre><code>int boxedEnumValue = (int) boxedEnum; boxedEnumValue &amp;= ~MyEnum.Flag2; boxedEnum = Enum.ToObject(boxedEnum.GetType(), boxedEnumValue); </code></pre> <p>Which works fine, the only problem is that the equivalent code to turn the boxedEnum into an integer is:</p> <pre><code>int boxedEnumValue = int.Parse(Enum.Format(boxedEnum.GetType(), boxedEnum, "X"), System.Globalization.NumberStyles.HexNumber); </code></pre> <p>Which I am sure you will agree is terrible and hacky.</p> <p>So this question has two prongs. It would be awesome if someone could prove me wrong and provide a means to perform binary operations on boxed enums - otherwise any way to avoid the string round-trip would be appreciated.</p> <p><a href="http://stackoverflow.com/questions/746905/get-integral-value-of-boxed-enum/746928#746928" rel="nofollow" title="Guffa's Answer">Guffa</a> gave me what I needed in order to convert the enum to a specific type. I authored an extension method that does the nitty-gritties:</p> <pre><code> /// &lt;summary&gt; /// Gets the integral value of an enum. /// &lt;/summary&gt; /// &lt;param name="value"&gt;The enum to get the integral value of.&lt;/param&gt; /// &lt;returns&gt;&lt;/returns&gt; public static T ToIntegral&lt;T&gt;(this object value) { if(object.ReferenceEquals(value, null)) throw new ArgumentNullException("value"); Type rootType = value.GetType(); if (!rootType.IsEnum) throw new ArgumentOutOfRangeException("value", "value must be a boxed enum."); Type t = Enum.GetUnderlyingType(rootType); switch (t.Name.ToUpperInvariant()) { case "SBYTE": return (T)Convert.ChangeType((sbyte) value, typeof(T)); case "BYTE": return (T) Convert.ChangeType((byte) value, typeof(T)); case "INT16": return (T) Convert.ChangeType((Int16) value, typeof(T)); case "UINT16": return (T) Convert.ChangeType((UInt16) value, typeof(T)); case "INT32": return (T) Convert.ChangeType((Int32) value, typeof(T)); case "UINT32": return (T) Convert.ChangeType((UInt32) value, typeof(T)); case "INT64": return (T) Convert.ChangeType((Int64) value, typeof(T)); case "UINT64": return (T) Convert.ChangeType((UInt64) value, typeof(T)); default: throw new NotSupportedException(); } } </code></pre> http://stackoverflow.com/questions/746905/get-integral-value-of-boxed-enum/746918#746918 0 Answer by Kirtan for Get Integral Value of Boxed Enum Kirtan 2009-04-14T09:48:27Z 2009-04-14T09:48:27Z <pre><code>int enumValue = (int)SomeEnum.Val1 | (int)SomeEnum.Val2; SomeEnum e = (SomeEnum)enumValue; </code></pre> <p>Do you want to achieve something like this?</p> http://stackoverflow.com/questions/746905/get-integral-value-of-boxed-enum/746928#746928 4 Answer by Guffa for Get Integral Value of Boxed Enum Guffa 2009-04-14T09:51:49Z 2009-04-14T11:08:08Z <p>A boxed value can never be changed in place. You just have to unbox the enum, do the operation and box it again:</p> <pre><code>boxedEnum = (MyEnum)boxedEnum &amp; ~MyEnum.Flag2; </code></pre> <p>Edit: </p> <p>Provided that the underlying type of the enum is int, you can just unbox it to int and box it to int. The boxed int can later on be unboxed to the enum type:</p> <pre><code>boxedEnum = (int)boxedEnum &amp; ~2; MyEnum value = (MyEnum)boxedEnum; // works both for a boxed int and a boxed MyEnum </code></pre>