Visual Studio 2010 中的生成方法存根始终使用字符串而不是字符串
如何更改生成方法存根生成大“字符串”类型而不是小“字符串”?
How can I change that generating a method stub generates me a big "String" type instead of the small "string" ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其包装在宏中并对结果进行后处理(即生成的存根)。
使用
DTE.ExecuteCommand("EditorContextMenus.CodeWindow.Generate.GenerateMethodStub")
激活该工具。相当丑陋,但 Visual Studio 似乎没有将任何接口外部化......
HTH
Wrap it in a macro and post process the result (that is, the generated stub).
Use
DTE.ExecuteCommand("EditorContextMenus.CodeWindow.Generate.GenerateMethodStub")
to activate the tool.Quite ugly, but it doesn't seem that visual studio externalize any interface to it...
HTH