#dotnetcore search results

💡 Domain-Driven Design (DDD) isn’t just theory—it’s architecture that scales! ✅ Presentation Layer ✅ Application Layer ✅ Domain Layer ✅ Infrastructure Layer A blueprint for building maintainable systems. #SystemDesign #DotNetCore #DDD

Vibe_coderr's tweet image. 💡 Domain-Driven Design (DDD) isn’t just theory—it’s architecture that scales!
✅ Presentation Layer
✅ Application Layer
✅ Domain Layer
✅ Infrastructure Layer
A blueprint for building maintainable systems.
#SystemDesign #DotNetCore #DDD

🎉 Big Congratulations to Sujeet Kumar for getting placed as a .NET Developer #G4 Software Solutions💻🚀 Your hard work, focus, and determination have truly paid off. #DotNetDeveloper #DotNetCore #CSharpDeveloper #ASPNet #MicrosoftDeveloper #BackendDeveloper


C# FormattableString can be helpful rather than using string interpolation or StringBuilder as FormattableString. It is easy to inspect and change values, as shown below. #csharp #dotnetcore

KarenPayneMVP's tweet image. C# FormattableString can be helpful rather than using string interpolation or StringBuilder as FormattableString. It is easy to inspect and change values, as shown below.

#csharp #dotnetcore

Exceptions are a plague on programming. Read more here: devleader.ca/2024/04/23/try… #CSharp #DotNetCore #Coding #Programming

DevLeaderCa's tweet image. Exceptions are a plague on programming.

Read more here:
devleader.ca/2024/04/23/try…

#CSharp #DotNetCore #Coding #Programming

Don't use async void... Unless you have to. Read more here: devleader.ca/2024/03/13/asy… #CSharp #DotNet #DotNetCore #Coding

DevLeaderCa's tweet image. Don't use async void... Unless you have to.

Read more here:
devleader.ca/2024/03/13/asy…

#CSharp #DotNet #DotNetCore #Coding

Slim Down Your App => Exclude the extra code you don’t need and watch your binaries shrink with .NET 9 and "Feature Switches" #dotnet #dotnetcore

WalenciukC's tweet image. Slim Down Your App => 

Exclude the extra code you don’t need and watch your binaries shrink with .NET 9 and "Feature Switches"

#dotnet #dotnetcore

Collection expressions aren’t just about fancy syntax They also give the compiler a chance to flex its optimization muscles 💪, making your code not just cleaner, but potentially faster too! #dotnet #dotnetcore

WalenciukC's tweet image. Collection expressions aren’t just about fancy syntax

They also give the compiler a chance to flex its optimization muscles 💪, making your code not just cleaner, but potentially faster too!

#dotnet #dotnetcore

🚀 Kickstart Your .NET Journey with Naresh i Technologies! 🔥 New Batch Alert: ASP.NET Core (MVC 5 + MVC Core 9) Register Now: t.ly/ASP-7A 📅 Date: 7th August 2025 ⏰ Time: 11:00 AM (IST) #fullstack #dotnetcore #Csharpedotnet #dotnet #MVC5 #Core6

nareshitech's tweet image. 🚀 Kickstart Your .NET Journey with Naresh i Technologies!
🔥 New Batch Alert: ASP.NET Core (MVC 5 + MVC Core 9)

Register Now: t.ly/ASP-7A

📅 Date: 7th August 2025
⏰ Time: 11:00 AM (IST)

#fullstack #dotnetcore #Csharpedotnet #dotnet #MVC5 #Core6

In .NET 9, the System.Threading.Lock class was introduced, replacing the traditional approach of using an object as a lock in the lock statement. This new class is designed with performance and code readability in mind. #dotnet #dotnetcore

WalenciukC's tweet image. In .NET 9, the System.Threading.Lock class was introduced, replacing the traditional approach of using an object as a lock in the lock statement. 

This new class is designed with performance and code readability in mind.

#dotnet #dotnetcore

What is new in LINQ in .NET 9 and C# 13? In this code: AggregateBy helps us efficiently sum up the prices for each genre 💡 Why use AggregateBy? Unlike GroupBy().Select(), it avoids intermediate collections #dotnet #dotnetcore

WalenciukC's tweet image. What is new in LINQ in .NET 9 and C# 13?

In this code:

AggregateBy helps us efficiently sum up the prices for each genre

💡 Why use AggregateBy? Unlike GroupBy().Select(), it avoids intermediate collections

#dotnet #dotnetcore

Does your ASP NET Core service need API key authentication? Read more here: devleader.ca/2024/04/18/api… #CSharp #DotNetCore #ASPNETCore #WebDevelopment

DevLeaderCa's tweet image. Does your ASP NET Core service need API key authentication?

Read more here:
devleader.ca/2024/04/18/api…

#CSharp #DotNetCore #ASPNETCore #WebDevelopment

Recently, I've worked with code using the [LoggerMessage] attribute with Serilog This approach gives: ✅ Improved Performance: The [LoggerMessage] attribute enables compile-time generation of logging methods, reducing string formatting overhead #dotnetcore #dotnet

WalenciukC's tweet image. Recently, I've worked with code using the [LoggerMessage] attribute with Serilog 

This approach gives:

✅ Improved Performance: The [LoggerMessage] attribute enables compile-time generation of logging methods, reducing string formatting overhead 

#dotnetcore
#dotnet

Instead of a generic IResult, it enforces a union type (Ok, InternalServerError, NotFound), improving type safety, unit testing, and API clarity. 🔹 Clearer Endpoints – TypedResults + pattern matching = predictable, self-documenting APIs. #dotnet #dotnetcore

WalenciukC's tweet image. Instead of a generic IResult, it enforces a union type (Ok, InternalServerError, NotFound), improving type safety, unit testing, and API clarity.

🔹 Clearer Endpoints – TypedResults + pattern matching = predictable, self-documenting APIs.

#dotnet #dotnetcore

C# aims to allow text literals to be assigned to variables of type 'ReadOnlySpan<char>' as often as possible, enabling operations on data without creating additional objects. These changes have been available since C# 13, which is .NET 9. #dotnet #dotnetcore

WalenciukC's tweet image. C# aims to allow text literals to be assigned to variables of type &apos;ReadOnlySpan&amp;lt;char&amp;gt;&apos; as often as possible, enabling operations on data without creating additional objects. 

These changes have been available since C# 13, which is .NET 9.

#dotnet #dotnetcore

کسی نمیخاد منتور من بینوا بشه؟ بکاند کارهای عزیز که با میکروسرویس دات نت کار کردین منو گردن بگیرین پلیز 👀🙄🫣 #backend #dotnetcore


We all know that we're not supposed to use reflection in performance critical paths... Read more here: devleader.ca/2024/03/17/con… #CSharp #DotNet #DotNetCore #BenchmarkDotNet

DevLeaderCa's tweet image. We all know that we&apos;re not supposed to use reflection in performance critical paths...

Read more here:
devleader.ca/2024/03/17/con…

#CSharp #DotNet #DotNetCore #BenchmarkDotNet

Exceptions are a plague on programming. Read more here: devleader.ca/2024/04/23/try… #CSharp #DotNetCore #Coding #Programming

DevLeaderCa's tweet image. Exceptions are a plague on programming.

Read more here:
devleader.ca/2024/04/23/try…

#CSharp #DotNetCore #Coding #Programming

Does your ASP NET Core service need API key authentication? Read more here: devleader.ca/2024/04/18/api… #CSharp #DotNetCore #ASPNETCore #WebDevelopment

DevLeaderCa's tweet image. Does your ASP NET Core service need API key authentication?

Read more here:
devleader.ca/2024/04/18/api…

#CSharp #DotNetCore #ASPNETCore #WebDevelopment

.NET is no longer your grandpa's Windows-only framework. It's modern, Linux-first, and open source! We're betting on boring done right. Agree? Disagree? Let me know! RT & follow for more contrarian takes! 🚀 #dotnetcore


Join Our Live Session This Friday Explore how to build and integrate a Membership Management System using ASP.NET Core 10 & Angular 20. 🗓️ Date: Friday, 10th Oct 2025 🕚 Time: 11:00 AM – 12:00 PM 📍 Register Now: sdcranchi.com/live-session-o… #DotNetCore #Angular

MurmuSoftware's tweet image. Join Our Live Session This Friday

Explore how to build and integrate a Membership Management System using ASP.NET Core 10 &amp;amp; Angular 20.
🗓️ Date: Friday, 10th Oct 2025
🕚 Time: 11:00 AM – 12:00 PM
📍 Register Now: sdcranchi.com/live-session-o…

#DotNetCore #Angular

Static Constructor in C# is use to initialize the static data members of the class but do you ever think why wo do not initialize the static data members of the class with simple constructor? Here is the link youtu.be/GonWH1jBRgs #dotnet #csharp #dotnetcore

iMrHammad's tweet card. Static Constructor in CSharp DotNET

youtube.com

YouTube

Static Constructor in CSharp DotNET


💡 Master File Handling in .NET Core 📁 Understanding how Streams, Files, and Directories work is key to efficient data management! Here’s a quick visual guide by TandaTech to help you navigate the System.IO namespace like a pro. 🚀 #DotNetCore #CSharp #tandatechit

Tandatechit's tweet image. 💡 Master File Handling in .NET Core 📁
Understanding how Streams, Files, and Directories work is key to efficient data management!
Here’s a quick visual guide by TandaTech to help you navigate the System.IO namespace like a pro. 🚀
#DotNetCore #CSharp
#tandatechit

Get .NET runtime info in your apps ⬇️ #dotnet

Dave_DotNet's tweet image. Get .NET runtime info in your apps  ⬇️
#dotnet

💡 Domain-Driven Design (DDD) isn’t just theory—it’s architecture that scales! ✅ Presentation Layer ✅ Application Layer ✅ Domain Layer ✅ Infrastructure Layer A blueprint for building maintainable systems. #SystemDesign #DotNetCore #DDD

Vibe_coderr's tweet image. 💡 Domain-Driven Design (DDD) isn’t just theory—it’s architecture that scales!
✅ Presentation Layer
✅ Application Layer
✅ Domain Layer
✅ Infrastructure Layer
A blueprint for building maintainable systems.
#SystemDesign #DotNetCore #DDD

How you know that a Blazor website is built by a .NET MAUI developer! #dotnet #dotnetmaui #blazor

hindrikes's tweet image. How you know that a Blazor website is built by a .NET MAUI developer! #dotnet #dotnetmaui #blazor

Don't use async void... Unless you have to. Read more here: devleader.ca/2024/03/13/asy… #CSharp #DotNet #DotNetCore #Coding

DevLeaderCa's tweet image. Don&apos;t use async void... Unless you have to.

Read more here:
devleader.ca/2024/03/13/asy…

#CSharp #DotNet #DotNetCore #Coding

Sadly, this doesn’t include C#, VB, or F#.

dotnet's tweet image. Sadly, this doesn’t include C#, VB, or F#.

Just when you thought it was over. The .NET docs team has released previews of new .NET Architecture Guides! 🚀 Blazor 🚀 gRPC 🚀 Desktop 🚀Cloud Native Check them out here dotnet.microsoft.com/learn/dotnet/a… #dotnetcore #mobile #cloud

cecilphillip's tweet image. Just when you thought it was over. The .NET docs team has released previews of new .NET Architecture Guides!

🚀 Blazor
🚀 gRPC
🚀 Desktop
🚀Cloud Native

Check them out here

dotnet.microsoft.com/learn/dotnet/a… #dotnetcore #mobile #cloud

Here are some filter templates that you see a bunch of people using. I found them last night. You can use the apps PicsArt or phonto and just put them over your pictures.

amourclarissa's tweet image. Here are some filter templates that you see a bunch of people using. I found them last night. You can use the apps PicsArt or phonto and just put them over your pictures.
amourclarissa's tweet image. Here are some filter templates that you see a bunch of people using. I found them last night. You can use the apps PicsArt or phonto and just put them over your pictures.
amourclarissa's tweet image. Here are some filter templates that you see a bunch of people using. I found them last night. You can use the apps PicsArt or phonto and just put them over your pictures.
amourclarissa's tweet image. Here are some filter templates that you see a bunch of people using. I found them last night. You can use the apps PicsArt or phonto and just put them over your pictures.

> Preparing for the .NET 10 GC (DATAS) dlvr.it/TNcNzY

PaulomorgadoN's tweet image. &amp;gt;  Preparing for the .NET 10 GC (DATAS) dlvr.it/TNcNzY

Primary Constructors in #dotnet 👍🏻 or 👎🏻

Dave_DotNet's tweet image. Primary Constructors in #dotnet
👍🏻  or  👎🏻

Solvable & common, @SHanselman discusses referencing a .NET Core library in #WinForms & explains #dotNET Standard, spr.ly/60188oJXO

VisualStudio's tweet image. Solvable &amp;amp; common, @SHanselman discusses referencing a .NET Core library in #WinForms &amp;amp; explains #dotNET Standard, spr.ly/60188oJXO

Full text searching in Entity Framework ⬇ #dotnet #efcore

Dave_DotNet's tweet image. Full text searching in Entity Framework  ⬇
#dotnet #efcore

C# FormattableString can be helpful rather than using string interpolation or StringBuilder as FormattableString. It is easy to inspect and change values, as shown below. #csharp #dotnetcore

KarenPayneMVP's tweet image. C# FormattableString can be helpful rather than using string interpolation or StringBuilder as FormattableString. It is easy to inspect and change values, as shown below.

#csharp #dotnetcore

Great high-performance tips for .NET developers

dotMorten's tweet image. Great high-performance tips for .NET developers

Images, mainly those posted to X, that were removed due to search filtering. 💗

nico_aiwoman's tweet image. Images, mainly those posted to X, that were removed due to search filtering. 💗

Loading...

Something went wrong.


Something went wrong.


United States Trends