नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
#using for assembly 'file' previously seen at location(line_number) without as_friend attribute; as_friend not applied
Remarks
A #using directive was repeated for a given metadata file, but the as_friend qualifier was not used in the first occurrence; the compiler will ignore the second as_friend.
For more information, see Friend Assemblies (C++).
Example
The following example creates a component.
// C4364.cpp
// compile with: /clr /LD
ref class A {};
The following example generates C4364.
// C4364_b.cpp
// compile with: /clr /W1 /c
#using " C4364.dll"
#using " C4364.dll" as_friend // C4364