fBaseXtensions.Items.CacheACDItem.Equals C# (CSharp) Method

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
        public override bool Equals(object obj)
        {
            //Check for null and compare run-time types.
            if (obj == null || GetType() != obj.GetType())
            {
                return false;
            }
            else
            {
                CacheACDItem p = (CacheACDItem)obj;
                return (ThisDynamicID == p.ThisDynamicID);
            }
        }