Couple of quickies

1: Attached threads

Rather then list all attached threads in a list view. I wanted total count.

This is my own little work around.

Code:
                Dim oThreads As ProcessThreadCollection = ProcessID.Threads
                Dim arryThreads As New List(Of Integer)

                For x As Integer = 0 To oThreads.Count - 1
                    arryThreads.AddRange(New Integer() {x})
                Next
Code:
lvi.SubItems.Add(arryThreads.Count.ToString)
This there a direct call to get the total number? Adding to an array seems a tad silly.

2: Individual CPU

Can't find it on MSDN. Any links that will go into detail on Application CPU and maybe even more detail on features on what i could add.