Blazor vs. Next.js: Getting Started with Interactive Web Applications

Explore a hands-on comparison of Blazor and Next.js for building interactive web applications, highlighting installation, project setup, and key differences.

Behind the scenes of dotnet run app.cs - Exploring the .NET 10 preview - Part 2 | by Andrew Lock. buff.ly/EaS92rc #dotnet #csharp #dotnet10 #cli

Behind the scenes of dotnet ru...

Behind the scenes of dotnet run app.cs - Exploring the .NET 10 preview - Part 2 | by Andrew Lock.

https://andrewlock.net/exploring-dotnet-10-preview-features-2-behind-the-scenes-of-dotnet-run-app.cs/

#dotnet #csharp #dotnet10 #cli

Behind the scenes of dotnet run app.cs: Exploring the .NET 10 preview - Part 2

In this post I looks at how the new single-file .NET run experience is implemented inside the .NET SDK, focusing on how the virtual-project file is built

Andrew Lock | .NET Escapades

I think I am going to start using this over Meta owned social apps. But I know it will take time to adjust and build the community I want to have here.

Hi, my name is Grant Watson, I am a software developer. I specialize in the C# ecosystem. I also LOVE ReactJS. If you find this and want to connect, feel free to follow and get in contact with me!

My site can be found at www.grantwatson.dev

#softwaredevelopment #compsci #csharp #reactjs

Dew Drop – July 9, 2025 (#4455) – Morning Dew by Alvin Ashcraft

#csharp 用 SelectMany 扁平化一个列表:

```csharp
var nested = new List<List<int>> { new() { 1, 2, 3 }, new() { 4, 5 } };
var flat = nested.SelectMany(x => x).ToList();
结果:[1, 2, 3, 4, 5]。
```