1

ファイルを書き込むための簡単な機能があります。

public static void WriteFile(string filename, string text)
{
    StreamWriter file = new StreamWriter(filename);
    try
    {
        file.Write(text);
    }
    catch (System.UnauthorizedAccessException)
    {
        MessageBox.Show("You have no write permission in that folder.");
    }
    catch (System.Exception e)
    {
        MessageBox.Show(e.Message);
    }

    file.Close();
}

StreamWriter.WriteAsyncコードを変換して try-catch で使用するにはどうすればよいですか?

4

1 に答える 1