MethodToken.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / clr / src / BCL / System / Reflection / Emit / MethodToken.cs / 1 / MethodToken.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*============================================================
** 
** Class:  MethodToken 
**
** 
** Purpose: Represents a Method to the ILGenerator class.
**
**
===========================================================*/ 
namespace System.Reflection.Emit {
 
 	using System; 
	using System.Reflection;
    using System.Security.Permissions; 

	[Serializable()]
    [System.Runtime.InteropServices.ComVisible(true)]
    public struct MethodToken 
    {
		public static readonly MethodToken Empty = new MethodToken(); 
        internal int m_method; 

        internal MethodToken(int str) { 
            m_method=str;
        }

        public int Token { 
            get { return m_method; }
        } 
 
    	public override int GetHashCode()
    	{ 
    		return m_method;
    	}

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

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

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

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*============================================================
** 
** Class:  MethodToken 
**
** 
** Purpose: Represents a Method to the ILGenerator class.
**
**
===========================================================*/ 
namespace System.Reflection.Emit {
 
 	using System; 
	using System.Reflection;
    using System.Security.Permissions; 

	[Serializable()]
    [System.Runtime.InteropServices.ComVisible(true)]
    public struct MethodToken 
    {
		public static readonly MethodToken Empty = new MethodToken(); 
        internal int m_method; 

        internal MethodToken(int str) { 
            m_method=str;
        }

        public int Token { 
            get { return m_method; }
        } 
 
    	public override int GetHashCode()
    	{ 
    		return m_method;
    	}

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

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

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

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK