PERWAPI.ZeroBasedArray.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 ZeroBasedArray)) return false;
            //return elemType == ((ZeroBasedArray)tstType).ElemType();
            return elemType.SameType(((ZeroBasedArray)tstType).ElemType());
        }