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