> I am working on a Windows Forms Control Library project which has some
> unmanaged code in it. This library will be used in C# Windows
> Application. Some of the managed classes have protected unmanaged class
> members. They must be reached by other classes inside the Library, but
> not outside.
There is an 'internal' access modifier in C#, but I don't know how to
specify this in managed C++. Also note that 'protected internal' will
again make the member visible to derived types outside the library.
Bumbala - 11 Jan 2007 15:37 GMT
internal worked! Thanks a lot!
Christian Fr?schlin wrote:
> > I am working on a Windows Forms Control Library project which has some
> > unmanaged code in it. This library will be used in C# Windows
[quoted text clipped - 5 lines]
> specify this in managed C++. Also note that 'protected internal' will
> again make the member visible to derived types outside the library.