PERWAPI.Type.SameType C# (CSharp) Method

SameType() private method

private SameType ( Type tstType ) : bool
tstType Type
return bool
        internal virtual bool SameType(Type tstType)
        {
            return this == tstType;
        }

Usage Example

Esempio n. 1
0
 internal override sealed bool SameType(Type tstType)
 {
     if (tstType is SystemClass)
         return tstType.SameType(this);
     return this == tstType;
 }