Merk
Tilgang til denne siden krever autorisasjon. Du kan prøve å logge på eller endre kataloger.
Tilgang til denne siden krever autorisasjon. Du kan prøve å endre kataloger.
gcnew constraint is missing empty parameter list '()'
Remarks
The gcnew special constraint was specified without the empty parameter list. See Constraints on Generic Type Parameters (C++/CLI) for more information.
Example
The following example generates C3869.
// C3869.cpp
// compile with: /c /clr
using namespace System;
generic <typename T>
where T : gcnew // C3869
// try the following line instead
// where T : gcnew()
ref class List {};