fork download
  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. }
Success #stdin #stdout 0.03s 33840KB
stdin
Standard input is empty
stdout
Contenido de `resultado`: Blog xCSw