Question

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

Was it helpful?

Solution

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

OTHER TIPS

You typed iosteam instead of iostream

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top