views:

49

answers:

2

Hello, very often i see code written from others, and when browsing over a function i want to see where this function is called from. Even when i debug my own code, i'd find it a useful feature:P

In c++ this feature is default in visual studio(its called browse-something), but i havent found any such thing for VB.NET yet, any ideas?

A: 
Anton Gogolev
+1  A: 

you can right-click on variables and function names and use "Find References"

ajh1138