是否可以使用coderush API获取源代码所在类的完整文件路径?
当 Visual Studio 中的插入符处于对象创建或引用其他类的方法时,我想获取完整的文件路径。
像
Class CurrentClass
{
Class2 object1=new Class2();
object1.method1();
}
我可以获得完整的文件路径,例如c:\ProjectLocation\Class2.cs。
当我在视觉工作室中得到这条线时。
Class2 object1=new Class2();
I wanted to get the full file path when the caret in visual studio is at object Creation or referring a method of some other class.
Something like
Class CurrentClass
{
Class2 object1=new Class2();
object1.method1();
}
Can I get the complete file path like c:\ProjectLocation\Class2.cs.
When I get this line in visual studio.
Class2 object1=new Class2();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以解析活动表达式(对象创建表达式、类型引用表达式、方法引用表达式),并使用解析声明获取文件名,使用如下代码:
You can resolve the active expression (object creation expression, type reference expression, method reference expression), and get the file name with resolved declaration, using code like this: