gpt4 book ai didi

c# - t4 "using"关键字

转载 作者:行者123 更新时间:2023-11-30 14:15:09 25 4
gpt4 key购买 nike

我是 t4 的新手。

我想生成代码到 cs 文件。我创建了一个新的 tt 文件。

<#@ template debug="false" hostspecific="false" language="C#" #>
<#@ output extension=".cs" #>

class IOperation {

<#
OperationSection section = null;

#>
}

OperationSection 是同一程序集中的一个类。我假设我应该使用“using”关键字。

我该怎么做?现在我收到一个错误

错误 2 编译转换:找不到类型或命名空间名称“OperationSection”(是否缺少 using 指令或程序集引用?)

谢谢

最佳答案

使用 import指令:

<#@ import namespace="YourNamespace" #>

此外,您可能需要添加 assembly引用类定义的程序集的指令:

<#@ assembly name="$(SolutionDir)\MyProject\bin\Debug\SomeLibrary.Dll" #>

关于c# - t4 "using"关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10532913/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com