Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 836199
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T04:56:36+00:00 2026-05-15T04:56:36+00:00

Is it possible to define an implicit conversion of enums in c#? something that

  • 0

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;

If not, why not?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T04:56:36+00:00Added an answer on May 15, 2026 at 4:56 am

    There is a solution. Consider the following:

    public sealed class AccountStatus
    {
        public static readonly AccountStatus Open = new AccountStatus(1);
        public static readonly AccountStatus Closed = new AccountStatus(2);
    
        public static readonly SortedList<byte, AccountStatus> Values = new SortedList<byte, AccountStatus>();
        private readonly byte Value;
    
        private AccountStatus(byte value)
        {
            this.Value = value;
            Values.Add(value, this);
        }
    
    
        public static implicit operator AccountStatus(byte value)
        {
            return Values[value];
        }
    
        public static implicit operator byte(AccountStatus value)
        {
            return value.Value;
        }
    }
    

    The above offers implicit conversion:

            AccountStatus openedAccount = 1;            // Works
            byte openedValue = AccountStatus.Open;      // Works
    

    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:

    public sealed class AccountStatus : RichEnum<byte, AccountStatus>
    {
        public static readonly AccountStatus Open = new AccountStatus(1);
        public static readonly AccountStatus Closed = new AccountStatus(2);
    
        private AccountStatus(byte value) : base (value)
        {
        }
    
        public static implicit operator AccountStatus(byte value)
        {
            return Convert(value);
        }
    }
    

    The base class (RichEnum) is listed below.

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Diagnostics;
    using System.Linq;
    using System.Reflection;
    using System.Resources;
    
    namespace Ethica
    {
        using Reflection;
        using Text;
    
        [DebuggerDisplay("{Value} ({Name})")]
        public abstract class RichEnum<TValue, TDerived>
                    : IEquatable<TDerived>,
                      IComparable<TDerived>,
                      IComparable, IComparer<TDerived>
            where TValue : struct , IComparable<TValue>, IEquatable<TValue>
            where TDerived : RichEnum<TValue, TDerived>
        {
            #region Backing Fields
    
            /// <summary>
            /// The value of the enum item
            /// </summary>
            public readonly TValue Value;
    
            /// <summary>
            /// The public field name, determined from reflection
            /// </summary>
            private string _name;
    
            /// <summary>
            /// The DescriptionAttribute, if any, linked to the declaring field
            /// </summary>
            private DescriptionAttribute _descriptionAttribute;
    
            /// <summary>
            /// Reverse lookup to convert values back to local instances
            /// </summary>
            private static SortedList<TValue, TDerived> _values;
    
            private static bool _isInitialized;
    
    
            #endregion
    
            #region Constructors
    
            protected RichEnum(TValue value)
            {
                if (_values == null)
                    _values = new SortedList<TValue, TDerived>();
                this.Value = value;
                _values.Add(value, (TDerived)this);
            }
    
            #endregion
    
            #region Properties
    
            public string Name
            {
                get
                {
                    CheckInitialized();
                    return _name;
                }
            }
    
            public string Description
            {
                get
                {
                    CheckInitialized();
    
                    if (_descriptionAttribute != null)
                        return _descriptionAttribute.Description;
    
                    return _name;
                }
            }
    
            #endregion
    
            #region Initialization
    
            private static void CheckInitialized()
            {
                if (!_isInitialized)
                {
                    ResourceManager _resources = new ResourceManager(typeof(TDerived).Name, typeof(TDerived).Assembly);
    
                    var fields = typeof(TDerived)
                                    .GetFields(BindingFlags.Static | BindingFlags.GetField | BindingFlags.Public)
                                    .Where(t => t.FieldType == typeof(TDerived));
    
                    foreach (var field in fields)
                    {
    
                        TDerived instance = (TDerived)field.GetValue(null);
                        instance._name = field.Name;
                        instance._descriptionAttribute = field.GetAttribute<DescriptionAttribute>();
    
                        var displayName = field.Name.ToPhrase();
                    }
                    _isInitialized = true;
                }
            }
    
            #endregion
    
            #region Conversion and Equality
    
            public static TDerived Convert(TValue value)
            {
                return _values[value];
            }
    
            public static bool TryConvert(TValue value, out TDerived result)
            {
                return _values.TryGetValue(value, out result);
            }
    
            public static implicit operator TValue(RichEnum<TValue, TDerived> value)
            {
                return value.Value;
            }
    
            public static implicit operator RichEnum<TValue, TDerived>(TValue value)
            {
                return _values[value];
            }
    
            public static implicit operator TDerived(RichEnum<TValue, TDerived> value)
            {
                return value;
            }
    
            public override string ToString()
            {
                return _name;
            }
    
            #endregion
    
            #region IEquatable<TDerived> Members
    
            public override bool Equals(object obj)
            {
                if (obj != null)
                {
                    if (obj is TValue)
                        return Value.Equals((TValue)obj);
    
                    if (obj is TDerived)
                        return Value.Equals(((TDerived)obj).Value);
                }
                return false;
            }
    
            bool IEquatable<TDerived>.Equals(TDerived other)
            {
                return Value.Equals(other.Value);
            }
    
    
            public override int GetHashCode()
            {
                return Value.GetHashCode();
            }
    
            #endregion
    
            #region IComparable Members
    
            int IComparable<TDerived>.CompareTo(TDerived other)
            {
                return Value.CompareTo(other.Value);
            }
    
            int IComparable.CompareTo(object obj)
            {
                if (obj != null)
                {
                    if (obj is TValue)
                        return Value.CompareTo((TValue)obj);
    
                    if (obj is TDerived)
                        return Value.CompareTo(((TDerived)obj).Value);
                }
                return -1;
            }
    
            int IComparer<TDerived>.Compare(TDerived x, TDerived y)
            {
                return (x == null) ? -1 :
                       (y == null) ? 1 :
                        x.Value.CompareTo(y.Value);
            }
    
            #endregion
    
            public static IEnumerable<TDerived> Values
            {
                get
                {
                    return _values.Values;
                }
            }
    
            public static TDerived Parse(string name)
            {
                foreach (TDerived value in _values.Values)
                    if (0 == string.Compare(value.Name, name, true) || 0 == string.Compare(value.DisplayName, name, true))
                        return value;
    
                return null;
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.