CC.System.Diagnostics
Overview:
CC.System.Diagnostics is an attempt to extend the System.Diagnostics class in the .NET Compact Framework. Currently it only contains a Process class that adds the GetProcesses() and GetProcessesByName() methods. This class was based on the example code in “Creating a Microsoft .NET Compact Framework-based Process Manager Application“. The code provided would not run on my device until I added the TH32CS_SNAPNOHEAPS flag to the CreateToolhelp32Snapshot() call. The GetProcessesByName() method is a modification of the original GetProcesses() method.
Download:
Download version 0.1 (Binary .zip)
Download version 0.1 (Source)
Installation:
Add a reference to the DLL or C# project to your project.
Requirements:
Microsoft .NET Compact Framework 2.0
Changelog:
0.1 - September 08, 2007
- Initial Release