This probably isn't possible, but it's annoying enough to try...
For convenience sake I'd like to be able to select "Go to definition" on a property or method on a variable defined as an interface and have Visual Studio go to the concrete implementation instead of the interface. Is there an attribute or something that I can use to instruct Visual Studio what the default concrete type for an interface is?
Update
I should mention that the reason this would be nice is because we're using dependency injection. So pretty much every object has an interface.