Hi !
Some (weird) problem i got :
I have a header file, InputHandler.h, which has one Class called InputH, and inside i have public: and a Void named Hi().
When i try to include InputHandler.h in PRPT.cpp, i get an error, weird one; The error says that i should put a ; before the using, like this :
#include <iostream>
#include <windows.h>
#include <string>
#include "Linker.h"
#include "InputHandler.h"
;using namespace std;
using namespace System;
using namespace System::IO;
And it works !
WHY ?!
Why should i put a ; ?