Coding Shorts: Nullable Reference Types: Or, Why Do I Need to Use the ? So Much!

  Рет қаралды 8,247

Shawn Wildermuth

Shawn Wildermuth

Күн бұрын

As the C# language matures, Microsoft has now made Nullable Reference Types the default in new projects. It might be confusing why this was done. Let's find out:
00:00 - Introduction
00:32 - Creating a Project
01:02 - Before Nullable Reference Types
03:45 - Using Nullable Reference Types
09:16 - Nullable Reference Types in Generics
12:01 - Wrapping Up
Source code: github.com/shawnwildermuth/co...
If you like this video, you might like other videos in my Instructional Videos:
- • Instructional Videos
You can hire me too! You can reach me at my new website:
- shawn.wildermuth.com

Пікірлер: 53
@arttrenton4467
@arttrenton4467 Жыл бұрын
Shawn, you did an outstanding job of clarifying this new feature. I was struggling to understand why this was done. It now make sense to me. Thanks 😊
@swildermuth
@swildermuth Жыл бұрын
Happy to help!
@imaginative-monkey
@imaginative-monkey 11 ай бұрын
Thanks for the video! 👍 Sometime for new projects, I add Nullable to the csproj, so the code won't compile unless I fix nullability issues. This makes me understand the concept better.
@sadhappy8860
@sadhappy8860 3 ай бұрын
Great video, really helped me thank you. Although the word null kept going funny in my head. Haha
@lasermouth
@lasermouth 8 ай бұрын
Amazing video! The only video that cleared up for me why there's such a thing as nullable ref types. In short, it was to eliminate ambiguity by forcing an explicit declaration of intent. I also enjoyed the latter half where you went into the operators and the generic example.
@swildermuth
@swildermuth 8 ай бұрын
Glad it helped!
@hozmannew896
@hozmannew896 Жыл бұрын
you have unusual way to simplify anything in a minute, great explanation as usual, thank you so much
@swordblaster2596
@swordblaster2596 Жыл бұрын
most important change in the last 5 years. Paying attention to this as the tools are trying to make you do, massively improves your design.
@jonb8869
@jonb8869 Ай бұрын
How? Can you elaborate on this?
@sschulze2891
@sschulze2891 Жыл бұрын
Thanks for the clear explanation on this. One thing that might be missing is that you can also get ris of the "may be null" warning by performing a null check somewhere before in the code. To me the addition of nullabel reference types possibly had the biggest impact of all newer features and i would never deactivate it on a new project now. Migrating old code can be a pain though ...
@arjanvandenberg5313
@arjanvandenberg5313 Жыл бұрын
Brilliantly explained in such a short way! Thanks a lot for your educational lessons 😊
@TheDrewCrawford
@TheDrewCrawford Жыл бұрын
This information was exactly what I was looking for. Greate stuff Shawn. Thanks for sharing your knowledge.
@swildermuth
@swildermuth Жыл бұрын
Glad it helped
@nalcora7389
@nalcora7389 Жыл бұрын
Extemely well done video, full and concise; have watched many video tutorials over the years both on YT, Pluralsight, etc; format is excellent.
@robby-de-laet
@robby-de-laet Жыл бұрын
Well, that was a clear explanation. Thanks Shawn.
@swildermuth
@swildermuth Жыл бұрын
Glad it was helpful!
@enigma_dev
@enigma_dev 6 ай бұрын
Amazing video, thanks for putting it together!
@prateektomar4874
@prateektomar4874 Ай бұрын
Nice explaination.
@swildermuth
@swildermuth Ай бұрын
Glad you liked it
@jasonazevedo1983
@jasonazevedo1983 7 ай бұрын
Your content is amazing.. well done! don't stop!!
@swildermuth
@swildermuth 7 ай бұрын
Ok!
@montana3426
@montana3426 Жыл бұрын
Thanks for great video!
@swildermuth
@swildermuth Жыл бұрын
My pleasure!
@onedev7316
@onedev7316 Жыл бұрын
Nice one. Thank you
@swildermuth
@swildermuth Жыл бұрын
Always welcome
@jedjohan
@jedjohan Жыл бұрын
Thanks, very good stuff. What would you say are the benefits, for developers and the applications we build. I know you did mention it in the end, but I somehow got the impression of "just do it" rather than "do it so that your code will ..."
@swildermuth
@swildermuth Жыл бұрын
I think the benefit is more transparency to what you expected. By specifying nullability, you're telling the developer after you what you expect. Whereas before Nullable Reference Types, I didn't have a way of saying "This will never be null".
@jedjohan
@jedjohan Жыл бұрын
@@swildermuth I also like that the code, when in runtime, will not (hopefully) get "null ref"-issues. Or am I misunderstanding ?
@swildermuth
@swildermuth Жыл бұрын
@@jedjohan That's true (harder to get null ref issues, but not impossible)
@kraadhithya9841
@kraadhithya9841 Жыл бұрын
good explanation
@swildermuth
@swildermuth Жыл бұрын
Thanks and welcome
@coderider3022
@coderider3022 2 ай бұрын
I switched to using result / option / elevated types from the functional world in my c# and never looked back. Nullable and handling of them was a terrible idea for c#. I get its backward compatibility but time to evolve.
@swildermuth
@swildermuth 2 ай бұрын
Immutability and nullability are not the same issue. But I'm glad it is working for you.
@a-s733
@a-s733 Жыл бұрын
short and clear
@swildermuth
@swildermuth Жыл бұрын
Glad you liked it.
@redcrafterlppa303
@redcrafterlppa303 Жыл бұрын
It's funny how c# is now doing the same thing java did with generics decades ago. Provide an optional "upgrade" to the new system and all old stuff is now a warning. And seeing that this "slow migration system" never completed in java we can assume that c# will have projects with nullabity and without for pretty much forever.
@semuhphor
@semuhphor Жыл бұрын
Cool channel. Thanks. I have been uneducated about how this feature works. Now I ain't. :D
@georgepagotelis
@georgepagotelis Жыл бұрын
At 3:00 - "int? x = default" - the value is not 0 but null! (I was testing code as you were displaying it) Which brings me to my next question, why isn't it clear by the compiler what "default" value is!
@swildermuth
@swildermuth Жыл бұрын
Null isn't the default for anything. Default for value types are typically 0 for numeric types.
@MohammadKomaei
@MohammadKomaei Жыл бұрын
How to create project by n new instead of dotnet new? when I use it I get error: n : The term 'n' is not recognized as the name of a cmdlet
@swildermuth
@swildermuth Жыл бұрын
Sorry, it is "dotnet new" - I just have a batch file that redirects to dotnet so I only have to type "n"
@torrex4
@torrex4 Жыл бұрын
when I scaffold the database using EF Core I get a lot of warnings about nullable
@swildermuth
@swildermuth Жыл бұрын
The scaffolding hasn't caught up with it. I don't have a good solution (adding the "#nullable disable" on every file isn't scalable really).
@swildermuth
@swildermuth Жыл бұрын
What version of .NET Core are you using? You might need to get the latest version of EF Tools. It is handling the null-ness in my recent projects.
@torrex4
@torrex4 Жыл бұрын
​@@swildermuth I am using .NET 7 and the dotnet-ef is 7.0.2 but in .NET 6 I also had the same warnings, I tried NullableReferenceTypes but not working in my case I can send more info if needed
@redcrafterlppa303
@redcrafterlppa303 Жыл бұрын
9:25 In fact the code: var len = user.Name?.Length; len is of type int? var len = user.Name!.Length; len is of type int
@tecTitus
@tecTitus 7 ай бұрын
in short. "nullable reference types" enabled makes reference types into "value types". the name "nullable reference types" is quite bad, defeats it's own purpose. They should have called it "non-nullable reference types"
@allanhouston22
@allanhouston22 16 күн бұрын
C# is a Frankenstein language for a long time. Now this nullable stupity is made so that the code is easily read and used by the AI... I hate it
@swildermuth
@swildermuth 2 күн бұрын
Not sure how AI plays into it. But you're able to not use nullable reference types. There seems to be a separation into two dialects of the language over the years. C# 13 is the maturation of including more functional ideas, but it's all opt-in. You don't have to use it if it's not serving your needs.
@user-mw4yp3jm1v
@user-mw4yp3jm1v Жыл бұрын
This feature adds unnecessary complexity to the c# language.
@SasanSalem
@SasanSalem Жыл бұрын
Great explanation
@swildermuth
@swildermuth Жыл бұрын
Glad you liked it.
Coding Shorts: Using the Vite PWA Plug-in
14:05
Shawn Wildermuth
Рет қаралды 23 М.
Coding Shorts: For The Record - Why You Should Use (Records in C#)
10:46
Shawn Wildermuth
Рет қаралды 11 М.
NO NO NO YES! (50 MLN SUBSCRIBERS CHALLENGE!) #shorts
00:26
PANDA BOI
Рет қаралды 102 МЛН
Did you find it?! 🤔✨✍️ #funnyart
00:11
Artistomg
Рет қаралды 122 МЛН
C# Nullable reference types - No more null reference exceptions!
18:06
Coding Shorts: Stop Leaking Secrets in ASP.NET Core
14:19
Shawn Wildermuth
Рет қаралды 5 М.
how Google writes gorgeous C++
7:40
Low Level Learning
Рет қаралды 759 М.
Let C# Tuples Become Your Best Friends
11:51
Zoran Horvat
Рет қаралды 9 М.
Working with Null in .NET 6 and C# 10
57:26
IAmTimCorey
Рет қаралды 35 М.
How to Avoid Null Reference Exceptions: Optional Objects in C#
18:13
Coding Shorts: ASP.NET Core Middleware Explained
17:36
Shawn Wildermuth
Рет қаралды 26 М.
How Did I Not Know This TypeScript Trick Earlier??!
9:11
Josh tried coding
Рет қаралды 201 М.
Use Null Object Pattern in Your Rich Domain Model
13:16
Zoran Horvat
Рет қаралды 10 М.
3 Shocking Misconceptions Among C# Programmers
9:25
Zoran Horvat
Рет қаралды 13 М.
Kalem ile Apple Pen Nasıl Yapılır?😱
0:20
Safak Novruz
Рет қаралды 1,2 МЛН
Samsung or iPhone
0:19
rishton vines😇
Рет қаралды 8 МЛН
What percentage of charge is on your phone now? #entertainment
0:14
How To Unlock Your iphone With Your Voice
0:34
요루퐁 yorupong
Рет қаралды 13 МЛН
Xiaomi Note 13 Pro по безумной цене в России
0:43
Простые Технологии
Рет қаралды 1,9 МЛН