What are the performance implications between these two items? I've seen the static class in the wild recently and I'm not sure what to make of it.
public enum SomeEnum
{
One = 1,
Two,
Three
}
public static class SomeClass
{
public static readonly int One = 1;
public static readonly int Two = 2;
public static readonly int Three = 3;
}