.NET 类及其源代码

发布于 2024-11-08 02:07:47 字数 129 浏览 2 评论 0原文

当我编写 C#(或任何 .NET 程序)时,我使用方法和类。我使用的大部分代码都是从 .NET 类调用方法。是否可以(纯粹出于好奇)查看这些类的实际源代码?

我知道 MSDN 有完整的类、它们的属性和方法的列表。但我想看看代码。

When I'm writing a C# (or any .NET programme) I use methods and classes. Most of the code I use is calling methods from the .NET classes. Is it possible (purely out of curiosity) to see the actual source code for these classes?

I know MSDN has full listings of the classes, their properties and their methods. But I would like to see the code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

傲性难收 2024-11-15 02:07:47

是的,是

在线浏览 .NET Framework 源代码,搜索和导航由 Roslyn

请参阅.NET Framework 博客了解详细信息...

Yes, it is:

Browse the .NET Framework source code online, with search and navigation powered by Roslyn.

See details at the .NET Framework blog...

未蓝澄海的烟 2024-11-15 02:07:47

如果您不想配置开发环境,您还可以在基类库上运行反汇编程序(例如 Reflector 中的反汇编程序)并以这种方式查看代码。您不会获得真实的变量名称或注释,但对于单独查看,这可能会更容易。

You can also run a disassembler (such as the one in Reflector) over the base class libraries and view code that way, if you don't want to configure your dev environment. You won't get real variable names or comments, but for isolated viewing this can be easier.

走过海棠暮 2024-11-15 02:07:47

是的,微软已经发布了.NET 源代码。

这篇文章应该可以帮助您入门。

Yes, Microsoft has released the source .NET.

This article should help get you started.

数理化全能战士 2024-11-15 02:07:47

接受的答案中提到的链接(https://referencesource.microsoft.com/)仅包含.NET源代码最高版本为 4.8。开发现已在 Github 上完成,您可以在其中找到(字面上的)源文件的最新版本。

dotnet Github 组织(.NET 基金会)拥有许多与.NET,包括 core、CLR 运行时aspnetcore,和其他一些人。大多数源代码都组织为 Visual Studio 项目和解决方案,因此您可以轻松导入它们。

The link mentioned in the accepted answer (https://referencesource.microsoft.com/) only contains .NET source up to version 4.8. Development is now done on Github, where you can find (literally) up-to-the-minute versions of the source files.

The dotnet Github organization (the .NET Foundation) has many of the repos relating to .NET, including core, the CLR runtime, aspnetcore, and a bunch of others. Most of the source code is organized into Visual Studio projects and solutions, so you can import them easily.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文