我有以下代码:
System.Diagnostics.Process process = new System.Diagnostics.Process
{
StartInfo =
{
FileName = "SomeFileName",
Arguments = "args",
UseShellExecute = false,
CreateNoWindow = true
}
};
当我在此代码上使用Fxcop时出现以下错误:
USA1013命名空间' System.Diagnostics.Process'来自汇编' System.dll'不允许本地变量'进程'方法'方法()'在班级' ClassName'。
USA1013命名空间' System.Diagnostics.Process.get_StartInfo'来自汇编' System.dll'不允许拨打电话' get_StartInfo'在方法'方法()'在班级' ClassName'。
导致这些错误的原因以及如何解决这些错误?