使用 CodeDom 的 VB.NET 部分方法的解决方法?
我知道 CodeDom 不支持部分方法,但是有解决方法吗?我找到了 C# 的解决方法,但我需要一个用于 VB.NET 的。谢谢。
I know CodeDom doesn't support partial methods, but is there a workaround? I found a workaround for C#, but I need one for VB.NET. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一种可怕的 hack,与 C# 的 hack 一样邪恶,但它确实有效:
请注意,BlankLinesBetweenMembers 选项对于使 hack 起作用至关重要。输出:
It is a horrible hack, as wicked as the C# one, but it does work:
Note that the BlankLinesBetweenMembers option is crucial to make the hack work. Output:
我最终检测了语言并使用 CodeSnippetTypeMember()
I ended up detecting the language and using CodeSnippetTypeMember()