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
using System;
using System.Decimal;
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?
If you're wanting to use Managed Extensions for C++, refer to this page at MSDN (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclang/html/_pluslang_using_directive.asp).
You need to make sure you're compiling with /clr, and to include:
#using <mscorlib.dll>
using namespace System;