#mapbox #dotnetmaui Ported another Mapbox iOS example from Swift to .NET Maui. Interested?
Week 20, 2023
Monday, 15 May 2023 - Sunday, 21 May 2023
Clean Architecture Solution Layers in .NET Clean architecture is an architecture that follows set of design principles (mostly SOLID) and divides the solution into different layers (mostly 4 layers). - Domain - Application - Infrastructure - Presentation 🧵 ⬇️ #dotnet
SOLID Principles for C# Developers
Why Use DateTimeOffset
F# Weekly #20, 2023 – .NET 8 Preview 4
These #aspnetcore @TFBenchmarks perf improvements thanks to very latest #dotnet runtime commits are *nice*. No app code changes, machines are 6 years old. Last chart shows JSON benchmark for Go Gin vs. #aspnetcore MVC vs. #aspnetcore Minimal APIs
"I’ve waited my entire career for this level of productivity. With #dotNETCore and #Blazor, it’s never been easier to turn my dreams into reality." - @robertmclaws, Founder @BurnRate_io. Learn more about how #BurnRate is fueling revenue success. msft.it/6016gZCWm
When and How to Use Blazor Components
XML Serialization in C# .NET Core: A Comprehensive Guide
Sticky Scroll: Stay in the Right Context - Visual Studio Blog
Empty String or string.Empty in C#?
How to register open generics in .NET? While working with our applications we need to implement generic repositories For example if you want to create CRUD operation for some 10-15 or more master pages then generic repository could be an option to achieve it.⬇️ 🧵 #dotnet
Building the Arm64 Visual Studio experience
Excited to see what you think of @VisualStudio 2022 17.7 Preview 1, which includes a multi-branch graph visualization, a refined all-in-one search experience, and file compare in Solution Explorer! Get the full story: aka.ms/BlogPost-17.7P…
Client Support for Calling WCF/CoreWCF with System.ServiceModel 6.0 Is Here! - .NET Blog
Get started with ChatGPT in .NET
Object Detection in ML.NET Model Builder
The New Way of Parsing ANY Type in .NET
This feature of @VisualStudio 17.7 Preview 1 is golden!
Ask HN: Contradicting licensing information on .NET / Visual Studio libraries
Implementing Two-Factor Auth using an Authenticator App in ASP.NET
Synchronous or Asynchronous Programming in C# Both are programming techniques with some pros and cons , let's see in details Synchronous - It works in single thread - Doesn’t help in responsive UI - Blocks main thread & UI - Best for quick and simple tasks and🧵 ⬇️ #dotnet
PowerShellGet in PowerShell 7.4 Updates
We've made some big #ASPNET Core updates in the latest release of #dotNET 8. Learn more about what's new in: ➡️ Blazor ➡️ API authoring ➡️ Native AOT ➡️ Authentication and authorization ➡️ Metrics 📖 msft.it/6014gkNZg
External code debugging has never been easier. Visual Studio 17.6 now "Automatically Decompiles" any external .NET code in the debugger #vstip #vsdebuggertip #VisualStudio 17.6
ReSharper and Rider 2023.1.2 – More Bug-fixes Released
Compare DateTime in C#
Visual Studio 2022 17.7 Preview 1 is here!
Concurrent Hosted Service Start and Stop in .NET 8
Don't overload your Program file with all dependencies instead do this ? Instead of putting add dependencies of application in Program file move your dependencies in separate classes in each assembly and then register them in Program file We get following benefits🧵 ⬇️ #dotnet
EF Core 8 Preview 4: Primitive collections and improved Contains - .NET Blog
ASP.NET Core updates in .NET 8 Preview 4 devblogs.microsoft.com/dotnet/asp-net…!!! #dotnet #aspnetcore
Visual Studio 2022 version 17.6 for C++ Developers - C++ Team Blog
Visual Studio 2022 - 17.6 Now Available - Visual Studio Blog
Visual Studio 2022 – 17.6 Now Available
Announcing .NET 8 Preview 4
ASP.NET Core updates in .NET 8 Preview 4
ML.NET - Introduction to Machine Learning With C#
HoloNET
💡 STOP using Automapper , Mapster gives 2X Performance - Install Mapster via Nuget Package or CLI - Define your DTO/Model(s) and Entities - Use it Benefits - Easy to use - More performance than Automapper - Comes with variety of mapping scenarios⬇️ 🧵 #dotnet
Blazor friends! I have created a Visual Studio Extension that helps with some everyday tasks when developing for Blazor. I would love to hear what you think! #Blazor #VisualStudio #Extension Check it out: marketplace.visualstudio.com/items?itemName… You can read more here: engstromjimmy.com/post/2023-05-1…
Override Razor Pages Routes From Razor Class Libraries
On .NET Live - Micro Frontends with Blazor
🔥Uploaded latest CypherDog update🔥 Includes new #BloodHound 4.3 Nodes & Edges + Various fixes for #PowerShell Core & more... Check it out here: github.com/SadProcessor/C…
Implementing WinUI/Fluent into Visual Studio
URI Encode and Decode in .NET
Xamarin.Forms and Essentials now target Android 13 (in Preview)
Get Ready for Visual Studio at Build 2023: Join Tens of Thousands Online!
How to start using .NET Background Services by @buhakmeh blog.jetbrains.com/dotnet/2023/05… #aspnetcore
ReSharper C++ Starts the 2023.2 Early Access Program
ReSharper 2023.2 Kicks Off the Early Access Program!
jpscripter/LogParsing
3 .NET "Best Practices" I Changed My Mind About
Use Azure PIM with groups in ASP.NET Core
Here's how to add authorization to .NET 7 Minimal API. If you enjoyed this, you might want to subscribe to my YouTube channel for more good stuff: youtube.com/c/Codewrinkles #dotnet #aspnetcore #csharp #programming #programmingtips
💡 Don’t confuse IEnumerable and List in .NET ? IEnumerable is base interface for all collections iand List is concrete class. IEnumerable<T> - It is read only. - It is interface - It can’t initialized with new() - It defines a single method called GetEnumerator 🧵 ⬇️ #dotnet