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

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