i wanna use process.getprocesses() but it doesn’t seem to be in my diagnostics class, why?!!!
i wanna use process.getprocesses() but it doesn’t seem to be in my diagnostics class,
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.