On Pg.102 It says to create a new CLR Console Application. MVS .NET 2003 Doesn't have a CLR folder for new projects. All it has is Console Application .NET. When it creates the project everything looks the same besides it doesn't have "array<System::String ^> ^args" in "int main ()". I tried just typing it in but when i compile, it gives me the 4 errors below.
error C2059: syntax error : '>'
error C2065: 'array' : undeclared identifier
error C2275: 'System::String' : illegal use of this type as an expression
error C2447: '{' : missing function header (old-style formal list?)
I've searched A LOT, but no luck. Any help is appreciated.
Here is the code it generates when i created the new project.
Code:
// This is the main project file for VC++ application project
// generated using an Application Wizard.
#include "stdafx.h"
#using <mscorlib.dll>
using namespace System;
int main()
{
// TODO: Please replace the sample code below with your own.
Console::WriteLine(S"Hello World");
return 0;
}