FC3Editor.Nomad.Inventory.Entry.Equals C# (CSharp) Method

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
            public override bool Equals(object obj)
            {
                Inventory.Entry entry = obj as Inventory.Entry;
                if (entry == null)
                {
                    return base.Equals(obj);
                }
                return this.Pointer == entry.Pointer;
            }