Valhalla Legends Forums Archive | .NET Platform | [C++.Net] How to use the System

AuthorMessageTime
bethra
I can't get to use the "System" stuff

I looked at code from googling for examples, and I looked at it on MSDN but I still can't seem to utilize the different classes in my project

[code]
using System;
using System.Decimal;
[/code]

Ok, many of the stuff I see on google, all they show is something like that above.

I put that in, but I get errors.  bleh.

Can I get some noob help on how to actually make it so that I can use it?
January 13, 2005, 2:44 AM
Myndfyr
If you're wanting to use Managed Extensions for C++, refer to this page at MSDN.

You need to make sure you're compiling with /clr, and to include:

[code]
#using <mscorlib.dll>
using namespace System;
[/code]
January 13, 2005, 2:48 AM

Search