PERWAPI.MethPtrType.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 MethPtrType) {
                MethPtrType mpType = (MethPtrType)tstType;

            }
            return false;
        }