ResXResourceReader Class Available Using C++?

  • Thread starter Thread starter Dave L
  • Start date Start date
D

Dave L

I'm using .NET 2002. Is the ResXResourceReader available in C++? MSDN says
yes (by showing C++ function prototypes) however C++ fails to find the
class.

Yes, I have the using statement like:

using namespace System::Resources;

Maybe .NET 2003 has it? Can anyone confirm or deny this?
 
Dave,
I'm using .NET 2002. Is the ResXResourceReader available in C++? MSDN says
yes (by showing C++ function prototypes) however C++ fails to find the
class.

Yes, I have the using statement like:

using namespace System::Resources;

Make sure you're #using System.Windows.Forms.dll or have an /FU for it.
 
Back
Top