从字符串创建 CodeMemberMethod
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,我找到了答案。希望它可以帮助其他人:
我们可以使用
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.