PERWAPI.CustomModifiedType.SameType C# (CSharp) Метод

SameType() приватный Метод

private SameType ( Type tstType ) : bool
tstType Type
Результат bool
        internal override bool SameType(Type tstType)
        {
            if (this == tstType) return true;
            if (tstType is CustomModifiedType) {
                CustomModifiedType cmTstType = (CustomModifiedType)tstType;
                return type.SameType(cmTstType.type) &&
                    cmodType.SameType(cmTstType.cmodType);
            }
            return false;
        }