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??
Even though
mscorlibis missingSystem.Diagnostics(which by itself is suspicious), theSystem.Diagnostics.Processclass lives inSystem.dll(notmscorlib.dll).