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
파일: PERWAPI.cs 프로젝트: nomit007/f4
 internal override sealed bool SameType(Type tstType)
 {
     if (tstType is SystemClass)
         return tstType.SameType(this);
     return this == tstType;
 }