Week 44, 2021
Monday, 1 November 2021 - Sunday, 7 November 2021
IAsyncEnumerable in #dotnet 6 can do this: [HttpGet] public async IAsyncEnumerable<int> Get() { for (int i = 1; i <= 10; i++) { await Task.Delay(1000); yield return i; } } code-maze.com/csharp-async-e…
Cellular Automata in F#
Lazy initialization using e.g. #csharp wrapper class Lazy<T> can improve performance of your application. Allows you to reduce CPU and memory resources by loading objects when they are needed. #code #dotnet #CodeNewbies
F# Weekly #45, 2021 – .NET 6 launch at .NET Conf, F# 6 and #FsAdvent
The best way to stay up to date with .NET news #Shorts
Parameter and Variable Tooltips in Visual Studio In 10 Minutes or Less
Use file scoped namespaces by pranavkm · Pull Request #38076 · dotnet/aspnetcore
#aspnetcore swapped to use C# file scoped namespaces. A casual 950,000 line change PR. No big deal. github.com/dotnet/aspnetc…
I'm adding Struct & Class layouts to my .NET Decompiler Tools (still WIP). I find this to be super helpful 😇 #dotnet
Looking for DEEP technical free books on .NET? Check out these amazing PDFs from @nishanil on the @dotnet website dotnet.microsoft.com/learn/dotnet/a…
.NET Application Architecture Guides
Show HN: WebFrame: F# framework for rapid prototyping with ASP.NET Core
Extended Property Patterns in C# 10 and .NET 6 In 10 Minutes or Less
Real-World Blazor with Steve Peirce
Get an early look at the AWS Toolkit for Visual Studio 2022! Check out the AWS Toolkit for Visual Studio 2022 (Preview) now available on the Visual Studio Marketplace. marketplace.visualstudio.com/items?itemName… #dotnet #AWS #dotNETonAWS
Web Wednesday: Creating full stack web apps with Blazor - with Cecil Phillip
Blazor provides an alternative option for building rich client-side web applications using #dotNET instead of JavaScript. In today's Web Wednesday session, we see how this component model works: msft.it/6014k1QZj
.NET MAUI Community Toolkit, Monthly Standup
Visual Studio 2022!!
Visual Studio 2022!!
PowerShell 7.2.0 - Could not load type System.Management.Automation.Subsystem.PredictionResult
A quick review of C# 10 new language features
Discovering new C# String Pattern Matching Features
Discovering new C# String Pattern Matching Features
Introducing the .NET Tech Community Forums
40% faster JSON serialization with Source Generators in .NET 6
Blogged: SignalR modules with a shared connection using a C# Source Generator #signalr #csharp #roslyn #sourcegenerator #aspnetcore @davidfowl guidnew.com/en/blog/signal…
In this #MSMVP #ASPNETCore 6 series, @anthonygiretti shows us how to use Angular and #dotNET6 to stream JSON responses. See what you think: msft.it/6018X4B4a
Keynote | .NET Conf 2021
The Catch Block #81 - .NET 6, C# 10, and VS 2022 Roundup!
Minimal APIs today #dotnet #aspnetcore
Did you know you can progressively modernize your .NET applications and SQL Server workloads? Join #AWS Solution Architects for a deep dive on Nov 10 at Windows Modernization Day on AWS. attendee.gotowebinar.com/register/48603… #dotnet #dotnetonAWS
No repositories, No automapper, No attributes, No MediatR, Welcome to #dotnet 6 and @CarterLibs
3 C# 10 features that were scrapped #Shorts
Null Parameter Checks in C# 10 and .NET 6 In 10 Minutes or Less
I ❤️ PVS, so check out my new @citrix #PVS Admin Toolkit based on #Powershell ✅ Document ✅ Merge ✅ Replicate ✅ Create and promote ✅ Shrink ✅ Export your PVS vDisks from the systray. tinyurl.com/zacksv32 #CitrixCTA
ICYMI C# 9 New Features: Create Immutable Objects with Records
Using #fsharp functions recursively is now easier in @JetBrainsRider. No need to go back and manually type rec!
Made some changes to .NET Decompilation Tools. How each instruction will now show a high-level (C# like) documentation of what it is doing to your code. Link: github.com/badamczewski/P… #dotnet
Improving logging performance with source generators: Exploring .NET Core 6 - Part 8
Add GitHub OpenID Auth For ASP.NET Core Apps
With LINQ in #csharp you can get rid of nested foreach loops. You can use SelectMany or Zip methods. btw: ZIP is the devil:) #dotnet #code #CodeNewbie *more tests you can find here: github.com/rh8512/csharp-… :)
Did you know that it's possible to declare multiple resources in a single using statement? #dotnet #dotnetcore
The fundamental problem the .NET Foundation Board has
.NET Collections - IEnumerable, IQueryable, ICollection
Bite-Size .NET 6 - MaxBy() and MinBy() in LINQ
.NET 6 Launches at .NET Conf, November 9-11
.NET Conf 2021, .NET 6, Uno Platform. Prizes Available!
Visual Studio 2022 Launch Event Agenda
C# 10: Constant Interpolated Strings
I let GitHub Co-Pilot be the Pilot for my C# code
If you ever need to know what type of build you are running in C#, this is a good way. The static boolean flag will also allow you to do branch elimination based on the flag. #dotnet