TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About null-check
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sanjay Kumar (1)
Pradeep Yadav (1)
Jitendra Mesavaniya (1)
Diptiranjan Sutar (1)
Dhanapal Chandran (1)
Vishal Yelve (1)
Anu Viswan (1)
Saravanan Ponnusamy (1)
Satheesh Elumalai (1)
Related resources for null-check
No resource found
Learn Use of Converters in WPF C#
8/21/2024 3:23:31 AM.
In WPF, IValueConverter and IMultiValueConverter are used to transform data for UI binding. IValueConverter converts single values (e.g., boolean to visibility), while IMultiValueConverter handles mul
Using Peek And Keep In TempData In ASP.NET MVC
8/7/2024 10:48:09 AM.
TempData in ASP.NET MVC is used to pass data between actions or controllers and can persist data across requests. Unlike ViewData and ViewBag, which only last for a single request, TempData can mainta
Using Find Instead of FirstOrDefault with Collections in C# .NET
7/15/2024 8:10:04 AM.
When working with collections in C# .NET, FirstOrDefault and Find serve similar purposes of retrieving elements based on conditions. FirstOrDefault is versatile for any IEnumerable<T>, while Fin
Null-Conditional Operators in C# - Simplifying Null Checks & More
5/27/2024 11:46:08 AM.
Explore the null-conditional operators in C# 6.0, which simplify null checks and prevent NullReferenceExceptions. Learn about the ?. operator, null-conditional indexing, and combining these with null-
Explain Null Handling in TypeScript
3/21/2024 6:13:26 AM.
Null handling in TypeScript involves managing null and undefined values effectively to prevent runtime errors. Techniques like nullable types, optional chaining, type guards, and non-null assertion op
Common Mistakes and How to Avoid Them in C#
1/5/2024 5:08:24 AM.
In this article, we will learn how to avoid common mistakes in C# programming. From efficient null checking and using tuples instead of classes to optimizing string concatenation and evaluating defaul
Exploring C# 11 Features
12/22/2022 2:57:13 AM.
This article uses .Net 7 Preview 1 and Visual Studio 17.1 to explore C# 11 features.
How Null Checks Are Changed In C#
3/4/2022 9:26:08 AM.
In this article, you will learn how null checks are changed in c#.
How To Identify The Null Check Code Smell
2/20/2020 8:25:22 AM.
In this article, you will learn how to identify the Null Check Code Smell.