When are two enums equal in C#?

前端 未结 7 1738
栀梦
栀梦 2020-12-31 22:39

I have created two enums and I know they are not the same but still I think it makes sense they would be equal since their string represent

相关标签:
7条回答
  • 2020-12-31 23:10

    To be honest, Equality is not straight forward most of the time.

    I would be inclined to create a helper class that implements IEqualityComparer (and any other equality tests, IsSame() for example) and use that.

    0 讨论(0)
  • 2020-12-31 23:14
        public enum enumA {one = 1, two = 2}
    
        public enum enumB {one = 1, two = 2}
    
        [Test]
        public void PreTest()
        {                       
            Assert.AreEqual((int)enumA.one, (int)enumB.one);
            // I don't think this one will ever pass
            Assert.AreSame(enumA.one, enumB.one); 
        }
    
    0 讨论(0)
  • 2020-12-31 23:18

    Unlike Java, C# does not provide any facility for adding methods (such as operator==()) to an enum.

    What I have done in the past when needing smarter enums is create an XHelper class (where X is the name of the enum), and I put all of the methods on it. Thus something like this:

    public static bool EnumAHelper.EqualsEnumB(EnumA enumA, EnumB enumB)
    {
        return (int)enumA == (int)enumB;
    }
    

    Though, I do not recall running into a case where I needed two different enums to signify the same thing.

    0 讨论(0)
  • 2020-12-31 23:19

    I refer you to the C# Language Specification v3.0, from which this quote has been extracted from the Enum section on page 29:

    "Each enum type has a corresponding integral type called the underlying type of the enum type. An enum type that does not explicitly declare an underlying type has an underlying type of int. An enum type’s storage format and range of possible values are determined by its underlying type. The set of values that an enum type can take on is not limited by its enum members. In particular, any value of the underlying type of an enum can be cast to the enum type and is a distinct valid value of that enum type."

    The .AreEqual method is really testing equivalence while the second tests identity. So, simply cast each one to its underlying type (in this case, int) and then do the comparison.

    public enum enumA { one, two }
    public enum enumB { one, two }
    [Test]
    public void PreTest()
    {
            Assert.AreEqual((int)enumA.one,(int)enumB.one);
            Assert.AreSame(enumA.one, enumB.one);
    }
    
    0 讨论(0)
  • 2020-12-31 23:29

    You could try casting them:

    Assert.AreEqual((int)enumA.one, (int)enumB.one);
    
    0 讨论(0)
  • 2020-12-31 23:31

    If you want them to match, cast them to int

    Assert.AreEqual((int)enumA.one,(int)enumB.one);
    

    would pass because they are both the first listed. If you wanted them to match because they both say "one" then you need to use reflection.

    0 讨论(0)
提交回复
热议问题