问一个新手的问题啊。。。
1>.\source\stdafx.cpp : fatal error C1192: #using failed on 'g:\base\navi_4.0\testing\ite\system.componentmodel.dataannotations.dll'这个得添加什么引用呢? --------------------编程问答-------------------- 参考MSDN
// C1192.cpp
// compile with: /clr
#using <mscorlib.dll>
#using "stdio.h" // C1192
// The following line resolves the error.
// #include <stdio.h>
int main()
{
} --------------------编程问答-------------------- 参考
补充:.NET技术 , C#