Agrupando char não gerenciado ** para string gerenciada []

Eu tenho uma função C ++ em um arquivo DLL (ele é compilado com a opção Conjunto de caracteres de bytes múltiplos):

_declspec(dllexport) void TestArray(char** OutBuff,int Count,int MaxLength)
{
    for(int i=0;i<Count;i++)
    {
        char buff[25];
        _itoa(i,buff,10);

        strncpy(OutBuff[i],buff,MaxLength);
    }
}

Suponho que o protótipo C # deva ser o próximo:

    [DllImport("StringsScetch.dll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)]
    private static extern void TestArray([MarshalAs(UnmanagedType.LPArray)] IntPtr[] OutBuff, int Count, int MaxLength);

Mas devo preparar objetos IntPtr para receber seqüências de caracteres de código não gerenciado?

questionAnswers(1)

yourAnswerToTheQuestion