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

TestClassThree.cs « SampleClasses « mdoc.Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4fc5a50a92d3ce9e5e6ba467e5bdd039a99f149 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace mdoc.Test.SampleClasses
{
    public class TestClassThree : IEnumerable<KeyValuePair<string, TestClassTwo>>, IDictionary<string, TestClassTwo>, ICollection<KeyValuePair<string, TestClassTwo>>, IEnumerable
    {
        private IDictionary<string, TestClassTwo> _dictionary;

        public TestClassThree()
        {
            this._dictionary = new Dictionary<string, TestClassTwo>();
        }

        public TestClassTwo this[string key] { get => this._dictionary[key]; set => new NotImplementedException(); }

        int ICollection<KeyValuePair<string, TestClassTwo>>.Count => this._dictionary.Count;

        bool ICollection<KeyValuePair<string, TestClassTwo>>.IsReadOnly => throw new NotImplementedException();

        ICollection<string> IDictionary<string, TestClassTwo>.Keys => this._dictionary.Keys;

        ICollection<TestClassTwo> IDictionary<string, TestClassTwo>.Values => throw new NotImplementedException();

        void ICollection<KeyValuePair<string, TestClassTwo>>.Add(KeyValuePair<string, TestClassTwo> item)
        {
            throw new NotImplementedException();
        }

        void IDictionary<string, TestClassTwo>.Add(string key, TestClassTwo value)
        {
            _dictionary[key] = value;
        }

        void ICollection<KeyValuePair<string, TestClassTwo>>.Clear()
        {
            throw new NotImplementedException();
        }

        bool ICollection<KeyValuePair<string, TestClassTwo>>.Contains(KeyValuePair<string, TestClassTwo> item)
        {
            throw new NotImplementedException();
        }

        bool IDictionary<string, TestClassTwo>.ContainsKey(string key)
        {
            throw new NotImplementedException();
        }

        void ICollection<KeyValuePair<string, TestClassTwo>>.CopyTo(KeyValuePair<string, TestClassTwo>[] array, int arrayIndex)
        {
            ((ICollection<KeyValuePair<string, TestClassTwo>>)this._dictionary).CopyTo(array, arrayIndex);
        }


        IEnumerator IEnumerable.GetEnumerator()
        {
            return _dictionary.GetEnumerator();
        }

        IEnumerator<KeyValuePair<string, TestClassTwo>> IEnumerable<KeyValuePair<string, TestClassTwo>>.GetEnumerator()
        {
            throw new NotImplementedException();
        }

        bool ICollection<KeyValuePair<string, TestClassTwo>>.Remove(KeyValuePair<string, TestClassTwo> item)
        {
            throw new NotImplementedException();
        }

        bool IDictionary<string, TestClassTwo>.Remove(string key)
        {
            throw new NotImplementedException();
        }

        bool IDictionary<string, TestClassTwo>.TryGetValue(string key, out TestClassTwo value)
        {
            throw new NotImplementedException();
        }
    }
}