SameType() private method

private SameType ( Type tstType ) : bool
tstType Type
return bool
コード例 #1
0
ファイル: PERWAPI.cs プロジェクト: nomit007/f4
 internal override sealed bool SameType(Type tstType)
 {
     if (tstType is SystemClass)
         return tstType.SameType(this);
     return this == tstType;
 }