PERWAPI.SystemClass.SameType C# (CSharp) Method

SameType() private method

private SameType ( Type tstType ) : bool
tstType Type
return bool
        internal override bool SameType(Type tstType)
        {
            if (tstType is SystemClass)
                return elemType == ((SystemClass)tstType).elemType;
            return elemType == tstType;
        }