I have a Enum like
namespace EnumTest
{
public class Enumeration
{
public Enumeration();
public enum Days
{
day = sunday,
night = monday
}
}
}
how can I get a Type Information for days through reflection.
Type type = assembly.GetType(Days);
Type type = typeof(Days) will return the Type info of Days. If I've have String s = "Days", with this string s I need to get the Type info of Days.
I need the type = Days
Enumeration+Daysas the name, I think. – Mehrdad Feb 23 '12 at 7:30stringb) they are delimited by,not;. You should start with some code that compiles and then, when you have specific problems, come here and ask. I also don't understand what is trying to be acheived here - I think you need to give some more context. – Adam Ralph Feb 23 '12 at 7:32intand there is seldom a need to use another type. As I said, this code won't even compile until you change the type you are trying to use for the enumeration, which is currentlystring. – Adam Ralph Feb 23 '12 at 7:38