如何使用数组在 C++/CX 中定义结构

How do I define a struct in C++/CX with an array

下面这个工作正常:

public value struct Foo {
    Platform::String^ Name; 
    Platform::String^ Type;
};

但是,当我尝试如下添加 Platform::Array<double>^ 时,我会收到一条错误消息。

public value struct Foo {
    Platform::String^ Name; 
    Platform::String^ Type;
    const Platform::Array<double>^ Value; 
};

错误信息:

signature of public member contains invalid type 'const Platform::Array<double,1> ^

我也试过这个const Platform::Array<Platform::String^>^ Values。但是我会有类似的错误信息:

signature of public member contains invalid type 'const Platform::Array<Platform::String ^,1> ^'

这是什么意思?我该如何解决这个问题?


编辑:在这种情况下必须使用 class,因为 value struct 只能包含基本数字类型、枚举 类 或 Platform::String^.[=20 作为字段=]

public ref class Foo sealed {
    property Platform::String^ Name;
    property Platform::String^ Type;
    property Platform::Array<Platform::String^>^ Values;    
};

WinRT value struct(或value class)只能包含原始类型(数字、字符串等)[source]。它不能包含数组或引用类型(IReference<T> 除外)。

感谢 @Yuchen 的编辑。