CoreCLR VS winforms

Compare CoreCLR vs winforms and see what are their differences.

CoreCLR

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

winforms

Windows Forms is a .NET UI framework for building Windows desktop applications. (by dotnet)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
CoreCLR winforms
22 25
12,786 4,201
- 1.5%
0.0 9.3
over 1 year ago 6 days ago
C#
- 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.

CoreCLR

Posts with mentions or reviews of CoreCLR. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-22.
  • The Performance Impact of C++'s `final` Keyword
    6 projects | news.ycombinator.com | 22 Apr 2024
    Yes, that is true. I'm not sure about JVM implementation details but the reason the comment says "virtual and interface" calls is to outline the difference. Virtual calls in .NET are sufficiently close[0] to virtual calls in C++. Interface calls, however, are coded differently[1].

    Also you are correct - virtual calls are not terribly expensive, but they encroach on ever limited* CPU resources like indirect jump and load predictors and, as noted in parent comments, block inlining, which is highly undesirable for small and frequently called methods, particularly when they are in a loop.

    * through great effort of our industry to take back whatever performance wins each generation brings with even more abstractions that fail to improve our productivity

    [0] https://github.com/dotnet/coreclr/blob/4895a06c/src/vm/amd64...

    [1] https://github.com/dotnet/runtime/blob/main/docs/design/core... (mind you, the text was initially written 18 ago, wow)

  • How are stack machines optimized?
    1 project | /r/Compilers | 20 Jun 2023
  • Best .net/c# resources for senior engineer
    3 projects | /r/dotnet | 8 Mar 2023
    Sort of, some topic are not relevant anymore, consider this - https://github.com/dotnet/coreclr/tree/master/Documentation/botr
  • Is there a C# under the hood tutorial?
    1 project | /r/csharp | 29 Jan 2023
    Fairly advanced stuff but the Book Of The Runtime (BOTR) it's a invaluable resource
  • In depth learning of C#?
    1 project | /r/csharp | 3 Sep 2022
    After that you can check out the The Book of the Runtime, which is the CoreCLR version of the previous book.
  • .NET 6 is now in Ubuntu 22.04
    23 projects | news.ycombinator.com | 16 Aug 2022
    Technically the restrictions already exist, just as a part of the development experience.

    - .NET Hot Reload is only implemented on Windows. It requires support in the .NET runtime, which is technically possible to implement, but the team has not gotten around to implementing it for years. This doesn't have to do with the issue around MS removing the "dotnet watch" command, it's for the "Edit and Continue" feature in IDEs.[1][2]

    - MS was considering deprecating Omnisharp, the open-source language server that implements C# support for VS Code, and replacing it with a closed-source version. Since the announcement, commits to omnisharp-vscode have dropped off significantly. The lack of Omnisharp would mean there would be no real open-source C# development environment for Linux anymore, since MonoDevelop was abandoned a few years ago. [3]

    [1] https://youtrack.jetbrains.com/issue/RIDER-31366/EditContinu...

    [2] https://github.com/dotnet/coreclr/issues/23685

    [3] https://github.com/omnisharp/omnisharp-vscode/issues/5276

  • what a .NET specialist should know
    3 projects | /r/dotnet | 14 Aug 2022
    The next step is to realize everything you think you know about .NET is just an abstraction. Next step is to learn about what is going on behind all that syntax sugar and facades. 1st step might be https://github.com/dotnet/coreclr/tree/master/Documentation/botr then go down the rabbit hole and have fun
  • Trouble with random numbers
    1 project | /r/csharp | 23 May 2022
  • Is CLR via C# still good?
    2 projects | /r/dotnet | 14 Feb 2022
    Book of the Runtime
  • Understanding dotnet
    1 project | /r/csharp | 18 Jan 2022
    As for the books, back in the days I really enjoyed reading “CLR via C#" by Jeffrey Richter which helped a lot to understand what is under the hood. Other from that, try The Book of the Runtime

winforms

Posts with mentions or reviews of winforms. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-18.
  • Ask HN: Any way to write a simple desktop app anymore?
    1 project | news.ycombinator.com | 22 Jan 2024
    Windows Forms[0] is still alive and will never die, and very low overhead to start with, and works on new and shiny .NET 8.

    If Linux or macOS, you can use AvaloniaUI[1] instead which is sufficiently advanced but assumes some prior knowledge.

    [0] https://github.com/dotnet/winforms/blob/main/docs/getting-st...

    [1] https://docs.avaloniaui.net/docs/get-started/

  • A GitHub issue suggests the removal of the WebBrowser control in WinForms. If you think this is a bad idea, be sure to voice your disapproval on the issue!
    1 project | /r/csharp | 30 Nov 2023
  • Duda carrera: C#/.NET vs. Node/Express
    13 projects | /r/devsarg | 18 May 2023
    Winforms: Licencia MIT.
  • We Got the Generics We Have (2022)
    1 project | news.ycombinator.com | 21 Mar 2023
    3. Therefore reified generics are not possible to implement in a backwards compatible way.

    Ok, sure, but if you instead a new generic collection types and leave the old ones alone, you don’t have to worry about breaking existing compiled code.

    This comment about C# suggests a lack of familiarity with the approach C# took:

    > C# made the opposite choice — to update their VM, and invalidate their existing libraries and all the user code that dependend on it.

    All of the pre-generic C# libraries continue to exist to this day (ArrayList, HashTable, and the non-generic IEnumerable). Applications that used them never stopped working. New code uses the generic collections (List and Dictionary).

    Anyways, I think the costs that Java is currently paying for non-reified generics (reflection, performance, and type safety mentioned in the article) is not worth the backwards comparability with the 20 year old J2SE 1.4. The price C# pays for making a backwards incompatible generics (mostly some minor annoyance when designing a collection class implementing IEnumerable) is worth it at this point.

    P.S. ok, I do admit that C# forking the collection library is still causing ongoing maintenance work 18 years later: https://github.com/dotnet/winforms/pull/8673

  • When A .NET Developer Learns Blazor
    5 projects | /r/csharp | 15 Mar 2023
    No, it is fully supported and in active development. https://github.com/dotnet/winforms
  • WPF Roadmap 2023
    3 projects | /r/dotnet | 21 Feb 2023
    No, it's still under active development/maintenance. https://github.com/dotnet/winforms/graphs/contributors
  • Where are these images stored?
    1 project | /r/dotnet | 13 Nov 2022
    The image is kept in-memory— https://github.com/dotnet/winforms/blob/main/src/System.Windows.Forms/src/System/Windows/Forms/PictureBox.cs
  • Does anyone know how to make a UITypeEditor for Winforms that works in .NET 6?
    1 project | /r/csharp | 24 Oct 2022
    Appears that this has been broken for a while. Seems it has something to do with the new designers being run out of process.
  • Why is Microsoft's C# not taught in most universities and Java is instead?
    6 projects | /r/microsoft | 15 Sep 2022
    Also, the runtime that C# runs on, is also completely open source as well (https://github.com/dotnet/runtime); ASP.NET which is used to create web apps in C# is open as well (https://github.com/dotnet/aspnetcore). WinForms/WPF, used to make desktop apps in C# is also open source (https://github.com/dotnet/wpf, https://github.com/dotnet/winforms). All of the source code for these are on the dotnet Github page: https://github.com/dotnet and most are all MIT-licensed.
  • Announcing .NET 7 Preview 5
    3 projects | /r/csharp | 14 Jun 2022
    You'll likely have to open an issue against https://github.com/dotnet/winforms. If you've already opened an issue here, then feel free to link and I might be able to provide suggestions on how to improve the triage process.

What are some alternatives?

When comparing CoreCLR and winforms you can also consider the following projects:

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

Avalonia - Develop Desktop, Embedded, Mobile and WebAssembly apps with C# and XAML. The most popular .NET Foundation community project.

sdk - Core functionality needed to create .NET Core projects, that is shared between Visual Studio and CLI

Introducing .NET Multi-platform App UI (MAUI) - .NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.

Xamarin.Forms - Xamarin.Forms Official Home

referencesource - Source from the Microsoft .NET Reference Source that represent a subset of the .NET Framework

Visual Studio Code - Visual Studio Code

AspNetCore-Developer-Roadmap - Roadmap to becoming an ASP.NET Core developer in 2024

Unity-WinForms - A Windows Forms port for Unity3d

Windows UI Library - Windows UI Library: the latest Windows 10 native controls and Fluent styles for your applications