vote up 0 vote down star

If I use /clr:oldSyntax the following should work:

public __value enum IceCreamFlavors
{
   Vanilla,
   Chocolate,
   Sardine,
};

what is the equivalent in non-oldSyntax? How do I declare a "managed" enum in Managed C++ for .NET 2.0?

Edit: when I follow JaredPar's advice, then if I try to pass an IceCreamFlavor to a function with the signature:

OrderFlavor(IceCreamFlavors flav)

by running

OrderFlavor(IceCreamFlavors::Sardine)

I get the error:

'IceCreamFlavors Sardine' : member function redeclaration not allowed
flag

Can you post a more complete sample of OrderFlavor? – JaredPar Jan 8 '09 at 23:50

1 Answer

vote up 1 vote down check

Try

enum class IceCreamFlavors {
  Vanilla,
  Chocolate,
  Sardine,
};
link|flag
When I do that, if I try to pass an IceCreamFlavor to a function with the signature: "OrderFlavor(IceCreamFlavors flav)" by running "OrderFlavor(IceCreamFlavors::Sardine)" I get "'IceCreamFlavors Sardine' : member function redeclaration not allowed" – brian Jan 8 '09 at 23:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.