I am looking at an enum I created in Reflector and there is a public integer field called "value__".
What is the purpose of this member?
A link or reference to a document is fine for an answer.
Googling is a pain because "value__" is returning hits for "value".
I have been searching for nearly an hour and only found the links below. Most of these are the same article on different sites. They all show how to access the member via reflection but none of them explain what the member is for.
http://powershell.com/cs/forums/p/462/599.aspx
http://tfl09.blogspot.com/2008/12/enums-enum-values-and-powershell.html
C# function that accepts an Enum item and returns the enum value (not the index)
http://www.mail-archive.com/dotnet@discuss.develop.com/msg02431.html
UPDATE
The last link below discusses (at the bottom) that you can't use value__ as an enum value as it is reserverd but does not say why.
http://www.vijaymukhi.com/documents/books/csadv/chap3.htm
Compiler Error
error CS0076: The enumerator name 'value__' is reserved and cannot be used ... Only for an enum does it not allow us to use the reserved word value__ as it must be using the same word internally to keep track of the enum.
UPDATE 2
The link below is to the MSDN page that for the compiler error that also says "value__" is reserved. But still no joy an finding out what the member does....
http://msdn.microsoft.com/en-us/library/e3988xhs(v=vs.71).aspx