Is this possible?
I want to make a public class internal.
Thanks
|
Is this possible? I want to make a public class internal. Thanks
| ||||
|
feedback
|
|
Possible ? Of course! It can be as simple as: 1) load the assembly; 2) find the type; 3) change it's visibility; 4) save the assembly However you can end up with a very broken assembly. E.g. if the type For the (open source) Moonlight project we used a Cecil-based tuner which removed and (in your case) internalized a lot of stuff so that Mono BCL (matching the MS full framework) could look like the Silverlight BCL. I guess you to read the (MIT.X11 licensed) source code from the link below to get a fully working implementation of internalizing a type. https://github.com/mono/mono/tree/master/mcs/tools/tuner https://github.com/mono/moon/tree/master/class/tuning EDIT mode details (copy/pasted/adapted) from MoonlightA11yProcessor.cs
That will make every public type in (already loaded) | |||||
feedback
|