try-catch-finally (translation from VPE for Csharp Reference)
Um uso comum de catch e finally juntos é obter e usar recursos em um try bloquear, lidar com circunstâncias excepcionais em um catch Bloquear e liberar os recursos a finally bloco.
Para obter mais informações e exemplos sobre exceções re-throwing, consulte try-catch and Lançando exceções.
Exemplo
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...
}
}
Especificação da linguagem C#
Para obter mais informações, consulte as seções a seguir no Especificação da linguagem C#:
5.3.3.15 Instruções try-catch-finally
8.10 A instrução try
16 Exceções
Consulte também
Tarefas
Como: Explicitamente lançar exceções
Conceitos
Referência
The try, capturar, and lançar Statements
Exceção tratamento instruções (referência C#)
usando demonstrativo (referência translation from VPE for Csharp)