Imagine I have defined the following Enum:
public enum Status : byte { Inactive = 1, Active = 2, }
What\'s the best practice to use
I'd say best practice is to not number them and let it be implicit - which would start from 0. Since its implicit its the language preference which is always good to follow :)