Feeds:
Posts
Comments

Posts Tagged ‘friend assembly’

Friend Assemblies

In C# 2.0, you can designate an assembly as a friend of yours assembly. A friend assembly can access all the non-public types of your assembly. You can declare an assembly as a friend of your assembly using the assembly: InternalsVisibleTo() attribute defined in the System.Runtime.CompilerServices namespace which takes the name of assembly and its [...]

Read Full Post »