Z
Z.K.
Why does the following code not work? I get the error
Compiling...
cl : Command line error D8016 : '/MT' and '/clrldsyntax' command-line
options are incompatible
Build log was saved at "file://c:\Documents and Settings\Pod\My
Documents\Visual Studio
2005\Projects\C++\AsciiTest\AsciiTest\Debug\BuildLog.htm"
AsciiTest - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
// This is the main project file for VC++ application project
// generated using an Application Wizard.
#include "stdafx.h"
#using <mscorlib.dll>
using namespace System;
using namespace System::Collections;
int main()
{
// TODO: Please replace the sample code below with your own.
ArrayList^ arList = new ArrayList();
Console::WriteLine(S"Hello World");
return 0;
}
Compiling...
cl : Command line error D8016 : '/MT' and '/clrldsyntax' command-line
options are incompatible
Build log was saved at "file://c:\Documents and Settings\Pod\My
Documents\Visual Studio
2005\Projects\C++\AsciiTest\AsciiTest\Debug\BuildLog.htm"
AsciiTest - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
// This is the main project file for VC++ application project
// generated using an Application Wizard.
#include "stdafx.h"
#using <mscorlib.dll>
using namespace System;
using namespace System::Collections;
int main()
{
// TODO: Please replace the sample code below with your own.
ArrayList^ arList = new ArrayList();
Console::WriteLine(S"Hello World");
return 0;
}