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