Is C# a low-level language?
Explores whether C# qualifies as a low-level language by porting a C++ raytracer to C# and analyzing performance, value types, and systems programming.
Explores whether C# qualifies as a low-level language by porting a C++ raytracer to C# and analyzing performance, value types, and systems programming.
A .NET developer at Microsoft introduces himself, his side projects like the bflat C# compiler, and his experimental C# demos.
A monthly blog post summarizing key .NET ecosystem updates for February 2019, including .NET Core 3.0 Preview, Polly for resilience, and the .NET Foundation.
Explores the challenges of implementing Java's ReferenceQueue and PhantomReference concepts in C# for garbage collection notification.
An introduction to creating and using templated components in the Blazor web framework for more flexible UI development.
A tutorial on creating toast notifications in Blazor applications using only C#, HTML, and CSS, without JavaScript.
A developer shares how to use .NET Core Global Tools for minifying web assets, introducing the custom 'Miglifier' tool.
Introduces a NuGet package for writing application logs to xunit test output, aiding in debugging .NET Core tests.
A developer reflects on their open source career, from learning C++ and Qt to becoming an engineering manager, emphasizing community and passion over money.
A technical benchmark comparing the performance of 'for' vs 'foreach' loops in .NET Core using BenchmarkDotNet, showing 'for' is faster.
A tutorial on building a practical Blazor WebAssembly app in C#, demonstrating HTTP calls and project structure.
A technical deep-dive exploring the internal structure of .NET Core .dll files, including IL code and assembly references.
A guide on migrating existing databases to use Entity Framework Core's built-in data seeding feature without causing insertion conflicts.
A tutorial on building a photo booth app using ASP.NET Core for the backend and Angular for the frontend, integrating Azure and Twilio.
An in-depth look at CoreRT, a .NET runtime designed for Ahead-of-Time (AOT) compilation, comparing it to existing .NET AOT solutions.
Introducing koio, a lightweight tool for embedding files into C programs, enabling static bundling of assets like markup and images.
A technical guide on deploying compiled C# Azure Functions across multiple environments using Visual Studio Team Services (VSTS) Release Management.
A developer recounts his first international speaking engagement at the IT Konekt conference in Serbia, sharing his travel experiences and talk on C#.
A summary of Richard Campbell's video on the origins and evolution of the Microsoft .NET ecosystem, its languages, and development tools.
Extends dispatcher-agnostic view-models to work across multiple windows and UI threads using SynchronizationContext.