I'm trying to make a program that generates a output file, but within my code, it keeps sending me these errors. I keep getting these erros
Error 1 error C2871: 'System' : a namespace with this name does not exist
I have 6 files and below is the code that is in them that is causing these error codes(it keeps highlighting each system line). I've included the fstream, manip and iostream as well as the string:
using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::CompilerServices;
using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;
using namespace std;
using namespace System;
using namespace System::IO;
using namespace System::Windows::Forms;
using namespace System::Runtime::InteropServices;
its C# and we're using Visual Studio 2012. It's a GUI Programming with C++ class.
How are you using those two languages together? Could you post a short example program you have worked on before that demonstrates the kind of code you are writing?