Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. using System;
  2. using System.IO;
  3.  
  4. namespace Articulos.Cap04
  5. {
  6.     public sealed class UsoFuncTResult
  7.     {
  8.         public static void Main()
  9.         {
  10.             string texto = "MSDN: Microsoft Developer Network";
  11.            
  12.             // Uso del delegado genérico Func<TResult>:
  13.             Func<bool> escritura = () => EscribirArchivo(texto);
  14.            
  15.             // Valida que la escritura ha sido satisfactoria:
  16.             if (escritura())
  17.             {
  18.                 Console.WriteLine ("La escritura del texto sobre el archivo ha sido satisfactoria.");
  19.             }
  20.             else
  21.             {
  22.                 Console.WriteLine ("La operación de escritura ha fallado.");
  23.             }
  24.         }
  25.        
  26.         public static bool EscribirArchivo(string texto)
  27.         {
  28.             try
  29.             {
  30.                 StreamWriter sw = new StreamWriter("usofunctresult.txt", true);
  31.                 sw.WriteLine (texto);
  32.                 sw.Close();
  33.                 return true;
  34.             }
  35.             catch
  36.             {
  37.                 return false;
  38.             }
  39.         }
  40.     }
  41. }