I'm new to Windows Forms. I'm not fully understanding why can't I see methods definitions? Am I only allowed to look at declarations?
For example, there is
public class ListBox : ListControl
I want to see how its method is working(source code, not Microsoft comments):
public override string ToString();
I only see this definition and when I'm pressing "Go to definition", it transfers me to this declaration.
Can someone please explain is System.Windows.Forms code is "hidden" ? Can someone describe what's the idea?