注册 登录
编程论坛 C++教室

‘System’ is not a namespace-name 如何解决

yiyizhang809 发布于 2012-06-13 06:08, 593 次点击
在cygwin terminal编译程序,代码using namespace System行报错
error: ‘System’ is not a namespace-name
如何解决,谢谢
1 回复
#2
lonmaor2012-06-13 08:48
std is a namespace-name
use "std" instead of "System". if it's C++ code not C#
1