从字符串创建 CodeMemberMethod

发布于 2024-08-25 17:20:18 字数 109 浏览 3 评论 0原文

我正在尝试使用 CodeDom 生成一些代码。我想知道是否有任何方法可以从字符串创建 CodeMemberMethod。 我找到了一个方法,但它从字符串生成程序集。我想从字符串生成一些方法。有什么办法吗?

I am trying to generate some code using CodeDom. I wanted to know if there is any way to create CodeMemberMethod from a string.
I found a method, but it generates assembly from string. I wanted to generate some methods from string. Is there any way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情感失落者 2024-09-01 17:20:18

嗯,我找到了答案。希望它可以帮助其他人:

我们可以使用 CodeSnippetStatement 来包含将直接包含在源代码中而无需修改的代码片段。

除此之外,还有 CodeSnippetCompileUnit 将从字符串文字编译代码单元。

Well, I found the answer. Hope it may help someone else:

We can use CodeSnippetStatement to include code fragments that will be included directly in source without modification.

In addition to that, there is CodeSnippetCompileUnit that will compile code units from string literal.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文