Advertisement
Fhernd

DescargarAppDomainAnfitrion.cs

Jul 27th, 2014
483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Recetas.Cap03
  4. {
  5.     internal class DescargarAppDomainAnfitrion
  6.     {
  7.         public static void Main()
  8.         {
  9.             AppDomain appDomainAnfitrion = AppDomain.CurrentDomain;
  10.            
  11.             // Genera la excepción `System.CannotUnloadAppDomainException`:
  12.             AppDomain.Unload(appDomainAnfitrion);
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement