TypeToken.Equals Method  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates whether the current instance is equal to a specified object.
Overloads
| Equals(Object) | Checks if the given object is an instance of  | 
| Equals(TypeToken) | Indicates whether the current instance is equal to the specified TypeToken. | 
Equals(Object)
Checks if the given object is an instance of TypeToken and is equal to this instance.
public:
 override bool Equals(System::Object ^ obj);public override bool Equals(object obj);override this.Equals : obj -> boolPublic Overrides Function Equals (obj As Object) As BooleanParameters
- obj
- Object
The object to compare with this TypeToken.
Returns
true if obj is an instance of TypeToken and is equal to this object; otherwise, false.
Applies to
Equals(TypeToken)
Indicates whether the current instance is equal to the specified TypeToken.
public:
 bool Equals(System::Reflection::Emit::TypeToken obj);public bool Equals(System.Reflection.Emit.TypeToken obj);override this.Equals : System.Reflection.Emit.TypeToken -> boolPublic Function Equals (obj As TypeToken) As BooleanParameters
Returns
true if the value of obj is equal to the value of the current instance; otherwise, false.