Muistiinpano
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää kirjautua sisään tai vaihtaa hakemistoja.
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää vaihtaa hakemistoja.
'number' : explicit managed or WinRT array dimensions must be between 1 and 32
Remarks
An array dimension was not between 1 and 32.
Example
The following example generates C2739 and shows how to fix it:
// C2739.cpp
// compile with: /clr
int main() {
array<int, -1>^a; // C2739
// try the following line instead
// array<int, 2>^a;
}