DCSIMG
C++/CLI - David Birin's blog

Browse by Tags

Why can’t we be friends (Assemblies)?
This great song asks “why can’t we be friends?” well after working 5 years in .NET I found out that assemblies can be friends… So what are friend assemblies, well it's pretty simple, it’s a way of giving another assembly access to the internal members on an assembly, and yes, it reminds me of C++ friend classes, but in C++ a friend has access to private members and in .NET only to internal members. I created a new assembly in C# and I want other assemblies to access it internal members. namespace...