문제

I just downloaded Visual Studio 2012 and when I started my preprocessor directive

 #using <iostream>

I get an error message saying "Error: cannot open metadata file "iostream". Anyone know what might be causing this issue? Thanks so much!

enter image description here

도움이 되었습니까?

해결책

For C++, you want #include <iostream> instead of #using <iostream>. #Using is a c# thing for the most part.

다른 팁

You typed iosteam instead of iostream

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top