Guffa 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:
/// <summary> /// Gets the integral value of an enum. /// </summary> /// <param name="value">The enum to get the integral value of.</param> /// <returns></returns> public static T ToIntegral<T>(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();
