ProcessThreadCollection.cs 963 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // System.Diagnostics.ProcessThreadCollection.cs
  3. //
  4. // Authors:
  5. // Dick Porter ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc. http://www.ximian.com
  8. //
  9. using System.Collections;
  10. namespace System.Diagnostics {
  11. public class ProcessThreadCollection : ReadOnlyCollectionBase {
  12. [MonoTODO]
  13. protected ProcessThreadCollection() {
  14. }
  15. [MonoTODO]
  16. public ProcessThreadCollection(ProcessThread[] processThreads) {
  17. }
  18. [MonoTODO]
  19. public ProcessThread this[int index] {
  20. get {
  21. return(null);
  22. }
  23. }
  24. [MonoTODO]
  25. public int Add(ProcessThread thread) {
  26. return(0);
  27. }
  28. [MonoTODO]
  29. public bool Contains(ProcessThread thread) {
  30. return(false);
  31. }
  32. [MonoTODO]
  33. public void CopyTo(ProcessThread[] array, int index) {
  34. }
  35. [MonoTODO]
  36. public int IndexOf(ProcessThread thread) {
  37. return(0);
  38. }
  39. [MonoTODO]
  40. public void Insert(int index, ProcessThread thread) {
  41. }
  42. [MonoTODO]
  43. public void Remove(ProcessThread thread) {
  44. }
  45. }
  46. }