try-catch-finally(C# 参考)

catchfinally 的常见用法是获得并使用 try 块中的资源、处理 catch 块中的异常情况,以及释放 finally 块中的资源。

有关重新引发异常的详细信息和示例,请参阅 try-catch引发异常。 有关 finally 块的详细信息,请参阅 try-finally

示例

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...
    }
}

C# 语言规范

有关详细信息,请参阅 C# 语言规范中的 try 语句部分。

另请参阅