当前位置: 代码迷 >> VC >> 怎么支持C++.net的混合类型
  详细解决方案

怎么支持C++.net的混合类型

热度:5437   发布时间:2013-02-25 00:00:00.0
如何支持C++.net的混合类型
#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;
  相关解决方案