Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.IO;
- namespace Articulos.Cap04
- {
- public class ConFunc
- {
- public static void Main()
- {
- SalidaContenido sc = new SalidaContenido();
- // Uso de Func<TResult>(out TResult):
- Func<bool> delFunc = sc.EnviarAArchivo;
- if (delFunc())
- {
- Console.WriteLine("La escritura fue satisfactoria.");
- }
- else
- {
- Console.WriteLine("La escritura ha fallado.");
- }
- }
- }
- public class SalidaContenido
- {
- public bool EnviarAArchivo()
- {
- try
- {
- StreamWriter sw = new StreamWriter("output1.txt");
- sw.WriteLine("Blog xCSw");
- sw.Close();
- return true;
- }
- catch
- {
- return false;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement