Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.IO;
- namespace Articulos.Cap04.Excepciones.Parte5
- {
- public sealed class UsoInvalidOperationException
- {
- public static void Main()
- {
- // Apertura y creación del archivo.
- StreamWriter sw = new StreamWriter("demo.txt");
- sw.WriteLine("Blog");
- sw.WriteLine("xCSw");
- // Cierre del archivo:
- sw.Close();
- try
- {
- // Intento de agregar una nueva línea al archivo
- // después de que el archivo fue cerrado:
- sw.WriteLine ("OrtizOL");
- }
- catch (InvalidOperationException ioe)
- {
- Console.WriteLine ("Mensaje de error: `{0}`", ioe.Message);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement