28 base.InnerList.AddRange(processThreads);
36 return base.InnerList.Add(thread);
44 base.InnerList.Insert(index, thread);
52 return base.InnerList.IndexOf(thread);
61 return base.InnerList.Contains(thread);
68 base.InnerList.Remove(thread);
76 base.InnerList.CopyTo(array, index);
void Insert(int index, ProcessThread thread)
Inserts a process thread at the specified location in the collection.
Represents an operating system process thread.
Provides a strongly typed collection of T:System.Diagnostics.ProcessThread objects.
int IndexOf(ProcessThread thread)
Provides the location of a specified thread within the collection.
Provides the abstract base class for a strongly typed non-generic read-only collection.
int Add(ProcessThread thread)
Appends a process thread to the collection.
void Remove(ProcessThread thread)
Deletes a process thread from the collection.
ProcessThreadCollection()
Initializes a new instance of the T:System.Diagnostics.ProcessThreadCollection class,...
void CopyTo(ProcessThread[] array, int index)
Copies an array of T:System.Diagnostics.ProcessThread instances to the collection,...
bool Contains(ProcessThread thread)
Determines whether the specified process thread exists in the collection.
ProcessThreadCollection(ProcessThread[] processThreads)
Initializes a new instance of the T:System.Diagnostics.ProcessThreadCollection class,...