dotnet VS referencesource

Compare dotnet vs referencesource and see what are their differences.

dotnet

.NET Community Toolkit is a collection of helpers and APIs that work for all .NET developers and are agnostic of any specific UI platform. The toolkit is maintained and published by Microsoft, and part of the .NET Foundation. (by CommunityToolkit)

referencesource

Source from the Microsoft .NET Reference Source that represent a subset of the .NET Framework (by microsoft)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
dotnet referencesource
28 88
2,672 3,087
3.5% 0.6%
6.2 0.0
about 1 month ago about 2 months ago
C# C#
GNU General Public License v3.0 or later MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

dotnet

Posts with mentions or reviews of dotnet. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-24.

referencesource

Posts with mentions or reviews of referencesource. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-30.
  • Why your F# evangelism isn't working
    5 projects | news.ycombinator.com | 30 May 2023
    Just like every language is able to be slow/non-performant -- but OO in this case would be Python in a web context; it doesn't invalidate that a good amount of OO codebases in the wild devolve into incomprehensible black boxes, where no one has any idea what anything does or how to make meaningful changes that fulfill the intent of (compare that to iterative programming, where you can atleast read it)

    A list: I give you a vector. Plain and simple. Not this insanity: https://referencesource.microsoft.com/#mscorlib/system/colle... You do not need OO to create a vector (or even an array -- god forbid!)

    As for trees: roll your own. They're simple enough, yet tightly-coupled with context that no generic implementation exists that is flexible enough. You do not need OO to create a tree. C has been working with trees long before the current Frankensteination of OO was even a twinkle in Gosling's eye.[0]

    Data structures do not need inheritance -- they might need delegation (message passing that requires you to actually think about your system).

    Data structures do not need encapsulation -- they most likely need namespaces. Realistically, most classes will be used as namespaces.

    Data structures do not need polymorphism -- just implement the methods you need, and name them appropriately (no 5+ word phrases, please. Please!)

    What modern OO does is lower the barrier to productivity in the present, and then pays for it in the future. It's no different than writing your "planet scale" backend system in JS.

    [0] If you want to know why we have Java: some guys that didn't have the time to think about low-level (memory management specifically) things for their embedded applications, got sick of trying to learn C++, decided to make their own language. That's it. There was no grand plan or thoughtful design -- it's just a mismash of personal preference.

    5 projects | news.ycombinator.com | 30 May 2023
    List is an IList/IReadOnlyList; these interfaces do nothing that couldn't be done right inside the file itself.

    https://referencesource.microsoft.com/#mscorlib/system/colle...

    https://referencesource.microsoft.com/#mscorlib/system/colle...

    Instead we have to go diving through the IList, which implements ICollection, which implements IEnumerable, which implements IEnumerable (again). Just because each interface is composed of another interface, doesn't mean you aren't using inheritance. You are effectively creating a custom inheritance tree through willy-nilly composition.

    It is gratuitous to make this chain so deep, when the underlying code is just a handful of lines.

    https://referencesource.microsoft.com/#mscorlib/system/colle...

    https://referencesource.microsoft.com/#mscorlib/system/colle...

    https://referencesource.microsoft.com/#mscorlib/system/colle...

    ----------------------------------------------------------------------------------------------------------------

    The doc-strings are unnecessary. It's self-evident what most of the code does if you read it.

            // Returns an enumerator for this list with the given
  • Multi-Key Dictionary in C#
    2 projects | /r/dotnet | 31 Jan 2023
    .net itself has arbitrary interfaces, ex https://github.com/microsoft/referencesource/blob/master/mscorlib/system/action.cs
  • Bring WCF apps to the latest .NET with CoreWCF and Upgrade Assistant
    5 projects | /r/dotnet | 5 Nov 2022
    Not enough people care. And you can compile the APIs yourself from the .NET Framework reference source if you really want it. System.Messaging was added to the .NET Framework reference source in this PR.
  • Ask HN: Examples of Top C# Code?
    29 projects | news.ycombinator.com | 25 Oct 2022
  • What do you think is more readable when using LINQ: Query Expressions or Method Expressions?
    4 projects | /r/csharp | 21 Oct 2022
    Now go review the code at https://github.com/microsoft/referencesource/blob/master/System.Xml.Linq/System/Xml/Linq and find where those parts are in LINQ to XML.
    4 projects | /r/csharp | 21 Oct 2022
  • How to Validate an Email Address in C#
    2 projects | dev.to | 20 Oct 2022
    Let’s look at another example. The following is a regex used by Microsoft in their EmailAddressAttribute class:
  • We doing this?
    3 projects | /r/ProgrammerHumor | 19 Oct 2022
    If I trained an AI to make a Java VM by getting it to learn from Microsoft's Reference Source licensed .NET framework. Would I be allowed to make a profit or distribute my Java VM?
  • Why do Task.Wait and Task.Result even exist?
    3 projects | /r/csharp | 28 Aug 2022
    And the actual implementation: https://github.com/microsoft/referencesource/blob/master/mscorlib/system/threading/Tasks/ThreadPoolTaskScheduler.cs

What are some alternatives?

When comparing dotnet and referencesource you can also consider the following projects:

.NET Runtime - .NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.

csharp-source-generators - A list of C# Source Generators (not necessarily awesome) and associated resources: articles, talks, demos.

ComputeSharp - A .NET library to run C# code in parallel on the GPU through DX12, D2D1, and dynamically generated HLSL compute and pixel shaders, with the goal of making GPU computing easy to use for all .NET developers! πŸš€

ASP.NET Core - ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.

Roslyn - The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.

MVVM-Samples - Sample repo for MVVM package

PostSharp.NotifyPropertyChanged - auto-magic INotifyPropertyChanged done right

github1s - One second to read GitHub code with VS Code.

CoreCLR - CoreCLR is the runtime for .NET Core. It includes the garbage collector, JIT compiler, primitive data types and low-level classes.

jab - C# Source Generator based dependency injection container implementation.

CoreWCF - Main repository for the Core WCF project

csharplang - The official repo for the design of the C# programming language