social.tchncs.de is one of the many independent Mastodon servers you can use to participate in the fediverse.
A friendly server from Germany – which tends to attract techy people, but welcomes everybody. This is one of the oldest Mastodon instances.

Administered by:

Server stats:

3.8K
active users

#csharp

48 posts35 participants0 posts today

👀👀 Here are 12 videos you have to check out!

Here's a collection of some of my more popular videos on YouTube:

youtu.be/Zf0YWgNbKnQ
In this video, I discuss the Reddit post about Rust replacing all of the C# at Microsoft.

youtu.be/5OKLiQM2y30
This video talks about using plugins within a vertical slice architecture. I walk through one of my solutions to show how I have set things up.

youtu.be/fTyubohxBGU
This video is on plugin usage in Blazor! As someone that loves using plugins, I had to show the usage in Blazor as well!

youtu.be/Wa3sdKGp3wE
This video explains how you can use BenchmarkDotNet like all of the performance examples you see across the web!

youtu.be/RR7Cq0iwNYo
For the beginners out there for C#, this video details how IEnumerable works. While it doesn't do a super technical deep dive, it should help explain the behavior vs something like an Array or List.

youtu.be/_v9k74gWJtE
A step by step guide on setting up watches for debugging in Visual Studio.

youtu.be/yg-qZXPBlKM
If you're interested in getting started with Autofac, this video is a perfect starting point!

youtu.be/GE-phyI6lEM
What's faster? Task.WhenAll or Parallel.ForEach? Only one way to find out!

youtu.be/iEfuyxwKQCE
A fun look at composition (compared to inheritence). No experience required for this one!

youtu.be/rohq-Wqj0yI
Getting setup with xUnit for writing unit tests!

youtu.be/Mk8bwXIZTXg
This is a fun video on how to make your own ASCII art generator!

youtu.be/xsY9tyRbCVk
How to switch up your code to move away from Enums by refactoring them out!

----
📨 Sign up for my email newsletter!
🗣️ Share with your network!

youtu.be- YouTubeEnjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.

I really like using #CSharp , and like it's reflection tools, and CSI/Roslyn, but the fact that it's maintained by microsoft makes cross platform development kind of a nightmare. Maui supports Mac/iOs these days, but still has no linux support. And having to buy a rider license for a non-windows IDE is also turbo annoying. It wouldn't solve all my problems, but I really wish Python could compile.

Back in the day I was writing a Bot for Twitch, and I showed the UI on Screen, and immediately Twitch Chat started trying to change colors and stuff of the bot.

I had to explain to them that no, that's not going to work; I didn't build it as a WebApp. Their messages were simply text and incapable of being executed unless they found one hell of an escape.

Because it was C# and Windows Forms lol.

Testing a personal #AI assistant locally sometimes leads to some interesting moments.

I spent some time with the debugger to figure out why my assistant would stop responding to me after adding some tools for it to use. Turns out it was hallucinating about how to use them, generating an empty response each time. I kept messaging it because I was curious to see if the chat could eventually get back on track.

All beginners should get familiar with the switch statement.

If you're new to programming and csharp, you may have come across a switch statement but not fully understood how it works.

A switch statetement is a helpful tool for managing conditional checks. In some cases it can enhance readability and reduce some low-level overhead.

Learn all about it so you can use it effectively!

Check out the article:
devleader.ca/2023/11/02/beginn

Has someone already replaced DotNetZip because of the vulnerability (and because it is archived now) with System.IO.Compression?

What I've seen so far: System.IO.Compression has still no support for password protected zip files.

I may try "ProDotNetZip" (a DotNetZip fork) within next days.