VB.NET“源”的位置代码,类似于Java的JDK src.zip
VB.NET有类似Java的JDK源代码吗?当我以前在 Eclipse 中工作时,我可以右键单击并查看生成的代码,或者可以说“查看底层”。我发现这个功能对于理解幕后发生的事情非常有帮助,它帮助我编写更好、更简化的代码。
到目前为止,我一直在使用 Visual Studio 2010 的对象浏览器,并且我也一直在查看生成的设计器文件,但这些文件通常不够深入。
Does VB.NET have anything similar to Java's JDK source code? When I used to work in Eclipse, I could right click and view the generated code, or "look under-the-hood" so to speak. I found this feature very helpful in understanding what was happening behind the scenes, and it helped me to write better, more simplified code.
I have so far been working with Visual Studio 2010's Object Browser, and I have also been looking at the generated designer files, but these often do not drill down far enough.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
执行此操作的最佳程序称为 .NET Reflector,您可以从此处下载它: http: //www.red-gate.com/products/reflector/
它可以让您看到可执行文件和 DLL 的幕后情况
The best program to do this is called .NET Reflector and you can download it from here: http://www.red-gate.com/products/reflector/
It lets you see executables and DLL's under the hood
ScottGu 有一篇关于此的旧博客文章:
http://weblogs.asp.net/scottgu/archive/2008/01/16/net-framework-library-source-code-now-available.aspx
您还可以使用.NET Reflector 可查看任何 .NET dll 的代码,但请记住,它看起来不像 Visual Studio 中的代码:)
http://www.red-gate.com/products/reflector/
ScottGu has an old blog post about this:
http://weblogs.asp.net/scottgu/archive/2008/01/16/net-framework-library-source-code-now-available.aspx
You can also use the .NET Reflector to peek into the code for any .NET dll, but keep in mind it won't look like the code in Visual Studio :)
http://www.red-gate.com/products/reflector/