I have the arraylist which has some process names like "Notepad", "mspaint"
I want to check the values of above arraylist against the following :
Process[] Procs = Process.GetProcesses();
If the process "Notepad" is not there in Procs, then i want to use that value for further requirement.
How do i find the value of my arraylist which is missing in Procs ??