gpt4 book ai didi

c# - 用于在运行时生成字符串的文本模板(如 Razor 或 T4)

转载 作者:太空狗 更新时间:2023-10-29 20:25:16 26 4
gpt4 key购买 nike

网络上是否有任何工具可用于从模板生成字符串,我正在寻找类似于 Razor 的工具。

字符串应该能够在运行时生成,并且不依赖于 Visual Studio(如 T4)。该框架应该在 Silverlight 中工作。

RazorEngine是一个满足要求但不能在 Silverlight 中工作的框架。

提前致谢。

最佳答案

希望我理解您的要求,但我认为您也可以让 T4 在 SL 中工作。可以要求 T4 生成有时称为运行时模板的东西。我已经定义了我的模板(非常简单)并将其添加到我的 Silverlight 项目中。

<#
for (var iter = 0; iter < 10; ++iter)
{
#>
This is just a test: #<#=iter#>
<#
}
#>

通常它会生成这样的输出:

This is just a test: #0
This is just a test: #1
This is just a test: #2
This is just a test: #3
This is just a test: #4
This is just a test: #5
This is just a test: #6
This is just a test: #7
This is just a test: #8
This is just a test: #9

但在这种情况下,我喜欢生成生成该输出的代码,即运行时模板。为此,我将自定义工具切换为:TextTemplatingFilePreprocessor

现在模板生成生成该输出的代码。如果您远离 hostspecific=true,您将不会获得 Visual Studio 依赖项。通过使用成员变量扩展部分类并从模板文件中引用它们,您可以在运行时修改模板上的行为。

Silverlight 中的问题是 silverlight 缺少类:System.CodeDom.Compiler.CompilerError 和 System.CodeDom.Compiler.CompilerErrorCollection。

我通过为此创建自己的类来解决这个问题(只是为了这个目的):

namespace System.CodeDom.Compiler
{
public class CompilerError
{
public string ErrorText;
public bool IsWarning;
}

public class CompilerErrorCollection : List<CompilerError>
{

}

}

现在我的模板编译完成了,我就像这样从我的 Silverlight 应用程序中生成输出:

var runtimeTemplate = new MyRuntimeTemplate();
string output = runtimeTemplate.TransformText();

关于c# - 用于在运行时生成字符串的文本模板(如 Razor 或 T4),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7719916/

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