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

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

private SameType ( Type tstType ) : bool
tstType Type
Результат bool
        internal virtual bool SameType(Type tstType)
        {
            return this == tstType;
        }

Usage Example

Пример #1
0
 internal override sealed bool SameType(Type tstType)
 {
     if (tstType is SystemClass)
         return tstType.SameType(this);
     return this == tstType;
 }