Platform details capturing API/tool — Windows Error Reporting equivalent?

1) System. OperatingSystem osInfo=System.Environment. OSVersion; 2) geekswithblogs.net/lorint/archive/2006/0... 3) string registryKey = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"; using (Microsoft.

Win32. RegistryKey key = Registry.LocalMachine. OpenSubKey(registryKey)) { var query = from a in key.GetSubKeyNames() let r = key.

OpenSubKey(a) select new { Application = r. GetValue("DisplayName") }; foreach (var item in query) { if (item. Application!

= null) Console. WriteLine(item. Application); } } (via http://www.onedotnetway.com/get-a-list-of-installed-applications-using-linq-and-c/) 4) Process processlist = Process.GetProcesses(); foreach(Process theprocess in processlist) { Console.

WriteLine("Process: {0} ID: {1}", theprocess. ProcessName, theprocess. Id); }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions