Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Reflection;
- namespace Recetas.Cap03
- {
- public class UsoSetData
- {
- public static void Main()
- {
- // Creación de dominio de aplicación:
- AppDomain nuevoAppDomain = AppDomain.CreateDomain("NuevoAppDomain");
- // Establecimiento de nombre a través del
- // método `SetData`:
- nuevoAppDomain.SetData("TemaColores", "Negro");
- // Visualizamos el valor del dato a través del
- // método `GetData` de AppDomain:
- Console.WriteLine("Valor de nombre `TemaColores`: {0}",
- nuevoAppDomain.GetData("TemaColores"));
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement