では、どうぞ。私は directx のラッパーを作成しており、タイプで打たれています。私は恐ろしいことを知っていますが、私を正しい方向に向けてください.
Platform::Array<short>^ Font::GetGlyphIndices(const Platform::Array<int>^ codePoints)
{
font->GetGlyphIndices(const UINT32 *codePoints, UINT32 count, UINT16 *indices);
Platform::Array<short>^ in; //should return indices
return in;
}
型を変換するにはどうすればよいですか? VS は としてエラーをスローします"signature of public member contains native type 'int []'"
。そのため、コードを更新しました。