コード例 #1
0
        //#region ITypeIdentityManager<ICliMetadataTypeSpecificationTableRow> Members

        public IType ObtainTypeReference(ICliMetadataTypeSpecificationTableRow typeIdentity, IType activeType, IMethodSignatureMember activeMethod, IAssembly activeAssembly = null)
        {
            if (typeIdentity.Signature is ICliMetadataTypeSignature)
            {
                return(this.ObtainTypeReference((ICliMetadataTypeSignature)typeIdentity.Signature, activeType, activeMethod, activeAssembly));
            }
            throw new NotSupportedException();
        }
コード例 #2
0
 public IType ObtainTypeReference(ICliMetadataTypeSpecificationTableRow typeIdentity)
 {
     return(this.ObtainTypeReference(typeIdentity, null, null));
 }