I have a Enum like
namespace EnumTest { public class Enumeration { public Enumeration(); public enum Days { day
To access the type you need is very simple:
Type type = typeof(Enumeration.Days);
Note that the enumeration declaration will not work as you have written it in your question. It should be something like this:
public enum Days { Monday, Tuesday, ... }