// SignatureToken.cs // // (C) 2001 Ximian, Inc. http://www.ximian.com namespace System.Reflection.Emit { /// /// Represents the Token returned by the metadata to represent a Signature. /// [Serializable] public struct SignatureToken { internal int tokValue; public static readonly SignatureToken Empty; static SignatureToken () { Empty = new SignatureToken (); } internal SignatureToken (int val) { tokValue = val; } /// /// public override bool Equals (object obj) { bool res = obj is SignatureToken; if (res) { SignatureToken that = (SignatureToken) obj; res = (this.tokValue == that.tokValue); } return res; } /// /// Tests whether the given object is an instance of /// SignatureToken and has the same token value. /// public override int GetHashCode () { return tokValue; } /// /// Returns the metadata token for this Signature. /// public int Token { get { return tokValue; } } } }