#include<iostream>
#include<string>
using namespace System;
using namespace std;
namespace Namespacedll
{
public ref class Student
{
private:
int id;
int age;
string name; public:
Student();
Student(int _id,int _age);
};
错误 1 error C4368: 不能将“name”定义为托管“Namespacedll::Student”的成员: 不支持混合类型 c:\users\zhang\desktop\clr制作dll\namespacedll\namespacedll\Student.h 17
}
------解决方案--------------------------------------------------------
http://msdn.microsoft.com/zh-cn/library/xhfb39es%28v=VS.90%29.aspx
string name;
改为
String^ name;