Klawr.ClrHost.Managed.SafeHandles.UObjectHandle.Equals C# (CSharp) Method

Equals() public method

Equality is determined by the equality of the encapsulated IntPtr.
public Equals ( object obj ) : bool
obj object UObjectHandle to compare with.
return bool
        public override bool Equals(object obj)
        {
            return handle.Equals(obj);
        }