7 C# Tips and Tricks to impress your .NET Developer friends

preview_player
Показать описание
For the C# programming language, some clever tips and tricks for .NET Developers ranging from the quite tame (but useful) to so spicy you'll probably get lose your job if you used them!

0:00 Intro
0:18 Deconstructors for non-tuples
1:21 Static using declarations in C#
1:45 Switch property pattern
2:42 Pattern matching conditions
3:55 Method returning a tuple as a replacement for deconstruction
5:08 Setting a variable value using a pointer in unsafe C# code
6:45 Switching two values without a temporary variable using XOR

#csharp #dotnet #programming
Рекомендации по теме
Комментарии
Автор

Please consider subscribing - it would mean a lot to me and also encourage me to make more tutorial videos 👍 Thanks for your support 🙏

edandersen
Автор

7:56 This works only for integers, though. Swapping anything can be done with tuples: (a, b) = (b, a);

krccmsitp
Автор

I loved it. Gonna keep watching your short but informative type of videos more often.

raviel_
Автор

3:55 You could have used an extension method to keep class clean and continue using the same code to deconstruct a person.

vasilypetruhin
Автор

Love this video. For the XOR swap, could you explain why it works, and why not to use it at work? Thanks!

islandparadise
Автор

You seem to use VSCode in your videos and not Visual Studio. Any special reason for that?

favourolanipekun
Автор

Nbo offense it's your resting face but it's kinda funny how you look very nice and kind while looking into the camera but like a villian while looking at the code. I do this also :D

rmbl
Автор

ASMR Coding is a thing now? Jk, great content mate

junior.santana
Автор

God bless you. Already fall in love with "unsafe". It will be my great joy for learning C#

정찬옥-kz
Автор

6:48
var x=10;
var y=20;
y=x+y-(x=y)
as simple as that

vaibhavzapadiya
Автор

I'm sure the video is dope, but at the start I thought you'll try to sell me some crystals (which is just another reason to watch it)

spiderjokeyy
Автор

I've had Kormas that were spicier than these tips.

SirBenJamin_