summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Reflection/Emit/ParameterToken.cs
blob: 42f85af46475650796132b1709767049453cb84b (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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/*============================================================
**
** 
** 
**
**
** Purpose: metadata tokens for a parameter
**
** 
===========================================================*/

using System;
using System.Reflection;

namespace System.Reflection.Emit
{
    // The ParameterToken class is an opaque representation of the Token returned
    // by the Metadata to represent the parameter. 
    [Serializable]
    public struct ParameterToken
    {
        public static readonly ParameterToken Empty = new ParameterToken();
        internal int m_tkParameter;


        internal ParameterToken(int tkParam)
        {
            m_tkParameter = tkParam;
        }

        public int Token
        {
            get { return m_tkParameter; }
        }

        public override int GetHashCode()
        {
            return m_tkParameter;
        }

        public override bool Equals(Object obj)
        {
            if (obj is ParameterToken)
                return Equals((ParameterToken)obj);
            else
                return false;
        }

        public bool Equals(ParameterToken obj)
        {
            return obj.m_tkParameter == m_tkParameter;
        }

        public static bool operator ==(ParameterToken a, ParameterToken b)
        {
            return a.Equals(b);
        }

        public static bool operator !=(ParameterToken a, ParameterToken b)
        {
            return !(a == b);
        }
    }
}