Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
#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