Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Windows.Forms;
- namespace Articulos.Cap04
- {
- public class Nombre
- {
- private string contenido;
- public Nombre(string Nombre)
- {
- this.contenido = Nombre;
- }
- public void MostarEnConsola()
- {
- Console.WriteLine(this.contenido);
- }
- public void MostarEnVentana()
- {
- MessageBox.Show(this.contenido);
- }
- }
- public class ConAction
- {
- public static void Main()
- {
- Nombre nombre = new Nombre("John Ortiz Ordoñez");
- // Uso de delegado integrado en BCL:
- Action del = nombre.MostarEnVentana;
- del();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement