Advertisement
Fhernd

Covarianza.cs

Jul 26th, 2014
433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Articulos.Cap04
  4. {
  5.     internal delegate object AccionObject();
  6.    
  7.     internal class Aplicacion
  8.     {
  9.         public static void Main()
  10.         {
  11.             // Declaración instancia de `AccionObject`:
  12.             AccionObject del = new AccionObject(ObtenerString);
  13.            
  14.             object resultado = del();
  15.            
  16.             Console.WriteLine("Contenido de `resultado`: {0}", resultado);
  17.         }
  18.        
  19.         public static string ObtenerString()
  20.         {
  21.             return "Blog xCSw";
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement