Is there a C# equivalent to the friend class concept in C++?
C#
5
Posts
3
Posters
0
Views
1
Watching
-
Subject says it all.
-
Subject says it all.
The short answer is no. The closest analogue is "internal" (not very close).
-
The short answer is no. The closest analogue is "internal" (not very close).
That's what I thought, thanks for the confirmation. I suppose it can be simulated with "internal" classes and small assembly groupings, but not quite the same thing.
-
That's what I thought, thanks for the confirmation. I suppose it can be simulated with "internal" classes and small assembly groupings, but not quite the same thing.
-
Wasn't aware of that, thanks for the pointer.