नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'symbol' : a symbol with this name already exists and therefore this name cannot be used as a namespace name
Remarks
A symbol used in the current compilation as a namespace identifier is already being used in a referenced assembly.
Example
The following example generates C2757:
// C2757a.cpp
// compile with: /clr /LD
public ref class Nes {};
And then,
// C2757b.cpp
// compile with: /clr /c
#using <C2757a.dll>
namespace Nes { // C2757
// try the following line instead
// namespace Nes2 {
public ref class X {};
}