Hi,
For an IVariableDeclaration element, I can call element.NameIdentifier.GetDocumentRange() to get the DocumentRange for just the variable name.
How do I get a DocumentRange for just the method name from an IInvocationExpression?
Eg. for a method invocation such as:
someClass.SomeSubClass.SomeMethod(someArgument, someOtherArgument);
I want a document range for just SomeMethod.
Martin