how i can get the icon associated for each process in the task manager in c#?
Printable View
how i can get the icon associated for each process in the task manager in c#?
1. You can get a list of the processes by using Process.GetProcesses()
2. Then you can get the associated icon using Icon.ExtractAssociatedIcon()
hth