1

I am writing an application where I have to use Process.Start api using System.Diagnostics namespace. I am using moonlight libraries with mono-2.10. But I am getting this error

"The type or namespace name `Process' could not be found. Are you missing a using directive or an assembly reference?"

I want to know is the System.Diagnostics namespace missing from the mscorlib.dll assembly in moonlight build??

4

2 回答 2

5

System.Diagnostics.Process 在 Silverlight API 中不可用。因此,它在 Moonlight API 中也不可用。如果要使用 Process,则需要使用完整的 .NET 框架 BCL。

于 2012-03-06T06:52:50.863 回答
1

即使mscorlib缺少System.Diagnostics(这本身就是可疑的),System.Diagnostics.Process该类仍然存在于System.dll(not mscorlib.dll) 中。

于 2012-03-06T05:06:50.380 回答