对于所有可能的异常,有什么方法可以在 vs 2010 或第三方应用程序中自动生成方法可以抛出的“catch”?
例如,如果我使用“Directory.CreateDirectory”,它将自动创建:
try
{
Directory.CreateDirectory("blabla");
}
catch (PathTooLongException)
{}
catch (DirectoryNotFoundException)
{}
catch (IOException)
{}
catch (ArgumentNullException)
{}
catch (UnauthorizedAccessException)
{}