Erreur du compilateur C2767
incompatibilité de dimension managed ou WinRTarray : argument(s) N attendu(s) - M fourni
La déclaration d'un tableau managé ou WinRT était incorrecte. Pour plus d'informations, consultez tableau.
L'exemple suivant génère l'erreur C2767 et montre comment la corriger :
// C2767.cpp
// compile with: /clr
int main() {
array<int> ^p1 = new array<int>(2,3); // C2767
array<int> ^p2 = new array<int>(2); // OK
}