I have two enums:
public enum ExplicitValues {A = 0, B = 1, C = 2}
public enum ImplicitValues {A, B, C}
Is there any way I can use reflection to determine that one has explicitly defined values, and the other doesn't? I've looked through the Enum type and the Reflection library, but couldn't come up with anything.
I'm using .NET 3.5
Thanks.
Start Free Trial