how do i view source code of text box that developed by microsoft in visual studio 2008 while i am programming with c# language in visual studio 2008?
+4
A:
If the text box is part of the .net framwork you can see its source by following theses steps http://blogs.msdn.com/b/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx
Scott Chamberlain
2010-07-06 15:02:20
A:
Unfortunately the .NET Framework is not Open-Source and you cannot browse the source code.
You can use Reflector to look into the Microsoft Assembly, but you won'ìt have direct access to the raw code.
Angelodev
2010-07-06 15:04:27
source of a part of .Net framework has been released for open access.
this. __curious_geek
2010-07-06 15:06:25
Nice to know! Thank you
Angelodev
2010-07-06 15:07:34
+1
A:
Reflector is good. But did you also try using the Microsoft Symbol server?
http://msdn.microsoft.com/en-us/library/b8ttk8zy(VS.71).aspx
Kris Krause
2010-07-06 15:05:14
A:
In Visual Studio 2010, under Tools -> Options -> Debugging, if you enable "Enable .NET Framework Source Stepping" you will be able to do that.
VS will download symbols from the MS symbols server.
Mau
2010-07-06 15:07:59