我是 VC++ 新手,但多年来一直在使用 C#。我正在尝试将旧的 C# 转换为 VC++,并且很难理解托管类和非托管类。
这是我在 AAA.h 中创建两个新类的地方:
#include "stdafx.h"
using namespace std;
using namespace System;
public ref class BBB
{
public:
Decimal zzz;
Decimal yyy;
DateTime mmddyyyy;
int vvv;
};
public ref class AAA
{
public:
AAA(String^ name);
List<BBB^>^ bbbb;
}
在 AAA.cpp 我有:
#include "AAA.h"
using namespace System::IO;
AAA::AAA(String^ name)
{
bbbb = new List<BBB^>;
//do other things
}
我无法弄清楚如何在这种情况下制定清单。我收到 C4430:缺少类型说明符错误。
我将不胜感激有关此问题的任何帮助和指示。谢谢