try-catch-finally (Referencia de C#)
Actualización: noviembre 2007
Un uso común de catch y finally consiste en obtener y utilizar recursos en un bloque try, tratar circunstancias excepcionales en el bloque catch y liberar los recursos en el bloque finally.
Para obtener más información y ejemplos sobre cómo volver a producir las excepciones, vea try-catch y Producir excepciones.
Ejemplo
public class EHClass
{
void ReadFile(int index)
{
// To run this code, substitute a valid path from your local machine
string path = @"c:\users\public\test.txt";
System.IO.StreamReader file = new System.IO.StreamReader(path);
char[] buffer = new char[10];
try
{
file.ReadBlock(buffer, index, buffer.Length);
}
catch (System.IO.IOException e)
{
Console.WriteLine("Error reading from {0}. Message = {1}", path, e.Message);
}
finally
{
if (file != null)
{
file.Close();
}
}
// Do something with buffer...
}
}
Especificación del lenguaje C#
Para obtener más información, vea las secciones siguientes de Especificación del lenguaje C#.
5.3.3.15 Instrucciones Try-catch-finally
8.10 La instrucción try
16 Excepciones
Vea también
Tareas
Cómo: Iniciar excepciones explícitamente
Conceptos
Referencia
The try, catch, and throw Statements
Instrucciones para el control de excepciones (Referencia de C#)
using (Instrucción, Referencia de C#)