ファイルを書き込むための簡単な機能があります。
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 で使用するにはどうすればよいですか?