नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'name' : a namespace or class of this name does not exist
Remarks
You made reference to a namespace or class that is not defined.
Example
The following example generates C2878:
// C2878.cpp
// compile with: /c
namespace A {}
namespace B = C; // C2878 namespace C doesn't exist
namespace B = A;