I am trying to add addons in my application, but I don\'t want the addon to use reflection at all, the addon code can be sandbox using Application Domain.
I have fo
According to the documentation, ReflectionPermission is something you grant to give code access to private and protected members. By default it is not granted and code only has access to public members. If you are trying to hide the public members, you will need to create a new interface that does not expose them.