Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Recetas.Cap03
- {
- internal class DescargarAppDomainAnfitrion
- {
- public static void Main()
- {
- AppDomain appDomainAnfitrion = AppDomain.CurrentDomain;
- // Genera la excepción `System.CannotUnloadAppDomainException`:
- AppDomain.Unload(appDomainAnfitrion);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement