FMOD.Studio.HandleBase.Equals C# (CSharp) Method

Equals() public method

public Equals ( HandleBase p ) : bool
p HandleBase
return bool
        public bool Equals(HandleBase p)
        {
            // Equals if p not null and handle is the same
            return ((object)p != null && rawPtr == p.rawPtr);
        }
        public override int GetHashCode()

Same methods

HandleBase::Equals ( Object obj ) : bool