I\'d like to create a plug-in architecture where I can limit an assemblies API to something very restricted, i.e. only allow a whitelist of functions. Is it possible to res
using the internal
keyword for anytihng you don't want other assemblies to see should work. Am i missing something?
What you do is this:
[InternalsVisibleTo("fullNameOfAssemblyFromOtherLibrariesAssemblyInfoFile")]