Udostępnij przez


Błąd kompilatora C3233

"type" : parametr typu ogólnego jest już ograniczony

Uwagi

Ograniczenie parametru ogólnego w więcej niż jednej where klauzuli jest nieprawidłowe.

Example

Poniższy przykład generuje kod C3233:

// C3233.cpp
// compile with: /clr /LD

interface struct C {};
interface struct D {};

generic <class T>
where T : C
where T : D
ref class E {};   // C3233