नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'type': multiple type parameter lists are not allowed
Remarks
More than one template or generic was specified for the same type, which is not allowed.
Examples
The following example generates C3857:
// C3857.cpp
template <class T, class TT>
template <class T2> // C3857
struct B {};
Possible resolution:
// C3857b.cpp
// compile with: /c
template <class T, class TT, class T2>
struct B {};
C3857 can also occur when using generics:
// C3857c.cpp
// compile with: /clr
generic <typename T>
generic <typename U>
ref class GC; // C3857
Possible resolution:
// C3857d.cpp
// compile with: /clr /c
generic <typename U>
ref class GC;