views:

53

answers:

1

I have a solution in VS 2010.

There are two DLL projects: one UserControl in C# WPF (myCSharpUC) and other - WinForm UserControl in VB.NET (myVbUC)

Actually in myCSharpUC I have an instance of myVbUC:

myCSharpUC {
    private MyVbUC vbControl;

    ...
    somemethod()
    {
       vbControl.MyProperty
    }
}

Is there a way to "navigate to definition" of MyProperty directly? (actually only metadata is displayed)

+1  A: 

ReSharper's Navigate to External Sources?

gorohoroh
I have no "external" sources... a little small solution with 2 userControls and a Form.
serhio