Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ProcessThreadCollection.cs « System.Diagnostics « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4efbcd21bb07fb62b327b1d219f1dbd5369a08e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//
// System.Diagnostics.ProcessThreadCollection.cs
//
// Authors:
//	Dick Porter (dick@ximian.com)
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//

using System.Collections;

namespace System.Diagnostics {
	public class ProcessThreadCollection : ReadOnlyCollectionBase {
		[MonoTODO]
		protected ProcessThreadCollection() {
		}

		[MonoTODO]
		public ProcessThreadCollection(ProcessThread[] processThreads) {
		}
		
		[MonoTODO]
		public ProcessThread this[int index] {
			get {
				return(null);
			}
		}

		[MonoTODO]
		public int Add(ProcessThread thread) {
			return(0);
		}

		[MonoTODO]
		public bool Contains(ProcessThread thread) {
			return(false);
		}

		[MonoTODO]
		public void CopyTo(ProcessThread[] array, int index) {
		}

		[MonoTODO]
		public int IndexOf(ProcessThread thread) {
			return(0);
		}

		[MonoTODO]
		public void Insert(int index, ProcessThread thread) {
		}

		[MonoTODO]
		public void Remove(ProcessThread thread) {
		}
	}
}