შენიშვნა
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ შესვლა ან შეცვალოთ დირექტორიები.
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ დირექტორიების შეცვლა.
cannot declare a managed 'managed construct' in an unmanaged 'unmanaged construct'
Remarks
You cannot include a managed object in an unmanaged context.
Example
The following example reproduces C3265:
// C3265_2.cpp
// compile with: /clr /LD
#include <vcclr.h>
ref class A { };
class B
// try the following line instead
// ref class B
{
A ^a; // C3265
// or embed the managed handle using gcroot
// try the following line instead
// gcroot<A^> a;
};