PERWAPI.BoundArray.SameType C# (CSharp) Méthode

SameType() private méthode

private SameType ( Type tstType ) : bool
tstType Type
Résultat bool
        internal override bool SameType(Type tstType)
        {
            if (this == tstType) return true;
            if (!(tstType is BoundArray)) return false;
            BoundArray bArray = (BoundArray)tstType;
            if (elemType.SameType(bArray.ElemType()))
                return SameBounds(numDims,lowerBounds,sizes);
            return false;
        }