In C#, the scoped suggestion for an enum includes the namespace, even though I have included the namespace in the file, eg
using Very.Long.Namespace.That.Is.Included;
...
AnEnum en = Very.Long.Namespace.That.Is.Included.AnEnum.Enum1;
Very.Long.Namespace.That.Is.Included.AnEnum.Enum1 is suggested where I would prefer just AnEnum.Enum1;
Thanks
Tim