vote up 1 vote down star
2

Does anyone know if there is a shortcut key for viewing the selected object (in the text editor) in the object browser?

I am sure there was one, but I cannot find it, or anything that seems to work in the key bindings dialog.

eg:

string test = string.empty;

if (string.isnullorempty(test))
{                          ^ caret here
    ...
}

pressing the key would open the object browser to System.String

flag

3 Answers

vote up 1 vote down check

F12 will go to the source (if you have it), or the object browser if it's in a referenced assembly.

link|flag
That's exactly the one i was looking for (although i bind it to F2, as i use F12 for Step Out). Thanks – Pondidum Mar 27 at 23:37
vote up 1 vote down

Use Ctrl-Alt-J.

link|flag
Doesn't navigate the the object though :( – Pondidum Mar 26 at 14:02
vote up 0 vote down

Yes, this is CTRL + ALT + J

here is the reference: http://bit.ly/y6b7v

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.