S
Steve Jaworski
Using VS2005Beta 2 I have VC++/CLI class defined in a Class Library DLL as:
#foo.h
namespace foo
{
public ref class Convert
{
public:
static Obj^ ToObj(UnmanagedObj* uObj);
};
}
Calling this static method from another VC++/CLI class in another Class
Library DLL as:
Obj^ obj = NULL;
obj = foo::Convert::ToObj(uObj);
results in a compilation error C3763: 'foo::Convert::ToObj': candidate
function(s) not accessible.
This worked fine in VS2003 and VS2005Beta1, any idea what's going on here?
Thanks,
Steve
#foo.h
namespace foo
{
public ref class Convert
{
public:
static Obj^ ToObj(UnmanagedObj* uObj);
};
}
Calling this static method from another VC++/CLI class in another Class
Library DLL as:
Obj^ obj = NULL;
obj = foo::Convert::ToObj(uObj);
results in a compilation error C3763: 'foo::Convert::ToObj': candidate
function(s) not accessible.
This worked fine in VS2003 and VS2005Beta1, any idea what's going on here?
Thanks,
Steve