What value__
might be here?
value__
MSN
ICQ
YahooChat
GoogleTalk
The code I ran is simple:
namespace EnumReflection
{
enum Messengers
{
MSN,
ICQ,
YahooChat,
GoogleTalk
}
class Program
{
static void Main(string[] args)
{
FieldInfo[] fields = typeof(Messengers).GetFields();
foreach (var field in fields)
{
Console.WriteLine(field.Name);
}
Console.ReadLine();
}
}
}