为什么在我的 System.Diagnostics silverlight 项目 VS 2010 中找不到进程类
我想使用 process.getprocesses() 但它似乎不在我的诊断类中,为什么?!!!
i wanna use process.getprocesses() but it doesn't seem to be in my diagnostics class, why?!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在使用 Silverlight 标签来构建 Silverlight 应用程序。 Silverlight 是 .NET CLR 的沙盒实例。因此,进程的概念对它来说是陌生的。 Silverlight 应用程序在与世界其他地方隔离的沙箱中运行,并且不应该访问更广泛的概念(例如进程)。
您会发现,完整的 .NET 框架中有许多您可能熟悉的内容,但由于各种原因,这些内容在 Silverlight 版本中并不存在。
I assume by your use of the Silverlight Tag you are building a Silverlight application. Silverlight is a sandboxed instance of the .NET CLR. As such the concept of a Process is alien to it. A Silverlight application runs in this sandbox isolated from the rest of the world and should not have access to wider concepts like Processes.
You will find that there are many things you might be familiar with from the full .NET framework which are not present in the Silverlight version for various reasons.