.NET
screensv.txt
Associated article: Implementing Screen Savers in .NET
Tags: .NET
Published source code accompanying the article by Richard Grimes in which he shows how to write .NET screen savers. Also see SCREENSV.ZIP.
Implementing Screen Savers in .NET
by Richard Grimes
Listing One
Process[] processes = Process.GetProcesses();
// Get the name of the file of this process
string thisProcess = Process.GetCurrentProcess().MainModule.FileName;
foreach (Process process in processes)
{
// Check the file name of the ...


