Does CLI have friend classes/functions

  • Thread starter Thread starter Micus
  • Start date Start date
M

Micus

Hello,

I've recently encountered scenario that a friend class would come in
handy for a WinForm. Does C++/CLI have anything equivalent to an unmanaged
C++ friend class or function?

TIA,
M
 
Micus said:
Hello,

I've recently encountered scenario that a friend class would come in
handy for a WinForm. Does C++/CLI have anything equivalent to an unmanaged
C++ friend class or function?

No. The closest you can get is the "internal" access.

Arnaud
MVP - VC
 
Back
Top