#Blazor vs. #NextJS: Getting Started with Interactive Web Applications
#React #webdev #dotnet #javascript #csharp
https://blog.dymaptic.com/blazor-vs.-next.js-getting-started-with-interactive-web-applications
#Blazor vs. #NextJS: Getting Started with Interactive Web Applications
#React #webdev #dotnet #javascript #csharp
https://blog.dymaptic.com/blazor-vs.-next.js-getting-started-with-interactive-web-applications
Blazor + Plugins + Dynamic HTML = ???
Read more here:
https://www.devleader.ca/2023/09/26/blazor-renderfragment-how-to-use-plugins-to-generate-html/
Behind the scenes of dotnet run app.cs - Exploring the .NET 10 preview - Part 2 | by Andrew Lock.
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
Dew Drop – July 9, 2025 (#4455)
https://www.alvinashcraft.com/2025/07/09/dew-drop-july-9-2025-4455/
#visualstudio #webdev #csharp #windowsdev #ai #mobiledev #devops #dotnet #cloud #dewdrop
#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]。
```