PERWAPI.PrimitiveType.SameType C# (CSharp) Method

SameType() final private method

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