Das ist es ja gerade
myProcesses ist aus dem namespace System.Diagnostics und das kennt weder
count noch
lenght.
Code:
using System;
using System.Windows.Forms;
using System.Diagnostics;
[..]
void Button1Click(object sender, System.EventArgs e)
{
Int32 i = 0;
String s = "";
Process[] myProcesses = Process.GetProcesses();
foreach(Process myProcess in myProcesses)
{
try
{
s = s + myProcess.ProcessName+"\t"+myProcess.Id.ToString()+"\t"+myProcess.PriorityClass.ToString()+"\t"+myProcess.MainModule.FileName+"\r\n";
i = i+1;
}
catch
{
}
}
textBox1.Text = s;
statusBar1.Panels[0].Text = "Anzahl Prozesse: ";
}
Wie man sieht, habe ich mir mit einen Zähler beholfen, das finde ich aber nicht so toll.