enums in mc++

  • Thread starter Thread starter Cartoper
  • Start date Start date
C

Cartoper

My current project is a makeup of both C#.Net 1.1 and MC++. Is there
any way to define an enum in MC++ that I can use ToString on in C# to
get the text value?
 
Cartoper said:
My current project is a makeup of both C#.Net 1.1 and MC++. Is there
any way to define an enum in MC++ that I can use ToString on in C# to
get the text value?

Did you try "__gc enum"?

However, MC++ is buggy and you really need to migrate to C++/CLI as soon as
possible.

In C++/CLI, it would be "enum class".
 
Did you try "__gc enum"?

However, MC++ is buggy and you really need to migrate to C++/CLI as soon as
possible.

In C++/CLI, it would be "enum class".

Oh trust me, if I had my say it would be in .Net 3.5, but the powers
that be want it keep this in 1.1, I think it is nuts, but it is what
it is!
 
Cartoper said:
Oh trust me, if I had my say it would be in .Net 3.5, but the powers
that be want it keep this in 1.1, I think it is nuts, but it is what
it is!

Ask them why they don't run it on NT 3.51. Virtually every argument for
upgrading the OS (security, new features, bug fixes, vendor support, etc)
applies to a middleware platform such as .NET.
 
Back
Top