我正在 Visual Studio 2010 中编写 T4 模板,并根据项目中的现有类生成代码。我需要生成的代码取决于类实现的接口的泛型类型参数,但我看不到通过 Visual Studio 核心自动化 EnvDTE 访问该信息的方法。这是我需要分析的一个类的示例:
public class GetCustomerByIdQuery : IQuery<Customer>
{
public int CustomerId { get; set; }
}
根据这个定义,我想生成如下所示的代码(使用 T4):
[OperationContract]
public Customer ExecuteGetCustomerByIdQuery(GetCustomerByIdQuery query)
{
return (Customer)QueryService.ExecuteQuery(query);
}
目前,我的 T4 模板中的代码看起来有点像这样:
CodeClass2 codeClass = GetCodeClass();
CodeInterface @interface = codeClass.ImplementedInterfaces
.OfType<CodeInterface>()
.FirstOrDefault();
// Here I want to do something like this, but this doesn't work:
// CodeClass2[] arguments = @interface.GetGenericTypeArguments();
但是如何获得 a 的泛型类型参数CodeInterface
?