Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
See newdevsguide.com/2022/11/21/vs-inline-diagnostics-for-csharp/ for an article-based version of this content.
Very nice tip for this option.Thanks
great, nice to know!
Nice tip! I wonder what that exclamation point is doing after Console.Readline()!
That's a C# nullability annotation telling C# the result of getting a string from the user will never be null. The CLR says ReadLine can return null, but in practice it doesn't happen even if the user doesn't type anything.
See newdevsguide.com/2022/11/21/vs-inline-diagnostics-for-csharp/ for an article-based version of this content.
Very nice tip for this option.
Thanks
great, nice to know!
Nice tip! I wonder what that exclamation point is doing after Console.Readline()!
That's a C# nullability annotation telling C# the result of getting a string from the user will never be null. The CLR says ReadLine can return null, but in practice it doesn't happen even if the user doesn't type anything.