Hi all,
I'm making heavy use of System::Reflection::Emit classes
right now, and I need to create an Enum within a class.
However, it appears that I can only create Enums at the
module level with ModuleBuilder::DefineEnum().
After an hour of MSDN and Google searching, I've found
year-old references to the non-existent method
TypeBuilder::DefineNestedEnum(). Is this method going
to reappear in .NET anytime soon? If not, I'm going
to have to promote all my nested Enums to the module
level and do some nasty name-mangling to prevent conflicts.
Thanks in advance for any information you can provide!
Brian
Alicia Li[MSFT] - 26 Sep 2003 23:18 GMT
Brian,
We have exchanged email offline. Post the answer here for
others who may be interested in this.
TypeBuilder::DefineNestedEnum()is on schedule to be
supported in V2.0 release.
Thanks
Alicia
This posting is provided "AS IS" with no warranties, and
confers no rights.
Please do not send e-mail directly to this alias. This
alias is for newsgroup purposes only.
>-----Original Message-----
>Hi all,
[quoted text clipped - 16 lines]
>Brian
>.