CodeGo.net>如何在项目中打开源文件?
作者:互联网
我正在尝试使用扩展名API在Visual Studio中的打开项目中打开文件.我找到了这个
http://msdn.microsoft.com/en-us/library/vstudio/bb164729(v=vs.110).aspx
和
但我不知道如何实现.是否有任何指导,或者我找错了地方?
解决方法:
看这里:
> DTE.OpenFile
> DTE.ItemOperations.OpenFile
用法:
DTE.ExecuteCommand("File.OpenFile", @"C:\path\to\source_file.cs");
小费:
要测试该方法,请打开VS Command Window,只需键入File.OpenFile
标签:visual-studio-2012,visual-studio-extensions,c,visual-studio 来源: https://codeday.me/bug/20191122/2060693.html