Foxoft.Ci.CiArrayPtrType.Equals C# (CSharp) Method

Equals() public method

public Equals ( CiType obj ) : bool
obj CiType
return bool
        public override bool Equals(CiType obj)
        {
            CiArrayPtrType that = obj as CiArrayPtrType;
            return that != null && this.ElementType.Equals(that.ElementType);
        }
CiArrayPtrType