I have an enum Pitch and a class Pitch, both naturally to me should be named as such, however it's confusing to have both with the same name. Are there any guidelines for when an enum's name clashes with a class type?
EXAMPLE:
public enum Pitch
{
Fastball,
Sinker,
Curveball
}
public class Pitch
{
}