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
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Jignesh Trivedi (4)
Naveen Kumar (3)
Jitendra Mesavaniya (3)
Banketeshvar Narayan (3)
C# Curator (3)
Ajay Mor (3)
Ziggy Rafiq (2)
Alpesh Maniya (2)
Sushila Patel (2)
Vishal Yelve (2)
Amit Mohanty (2)
Rohatash Kumar (2)
Venkatasubbarao Polisetty (2)
Thiago Vivas (2)
Rikam Palkar (2)
Andrea Angella (2)
Daniel Gomez (1)
Deepak Middha (1)
Sanjay Kumar (1)
Pradeep Yadav (1)
Jaimin Shethiya (1)
Abhishek Arora (1)
Diptiranjan Sutar (1)
Dinesh Gabhane (1)
Abhishek Chadha (1)
Ashutosh Gupta (1)
Suraj Sahoo (1)
Dhanapal Chandran (1)
Ajay Kumar (1)
Manchun Kumar (1)
Jasminder Singh (1)
Jefferson S. Motta (1)
Jithu Thomas (1)
Habibul Rehman (1)
Rizwan Ali (1)
Uday Dodiya (1)
Arjun Panwar (1)
Prateek Agrawal (1)
Miguel Teheran (1)
Manoj Mittal (1)
Ravikant Sahu (1)
Jin Necesario (1)
Harpreet Singh (1)
Prasoon (1)
Deepak Tewatia (1)
Harshal Limaye (1)
Anu Viswan (1)
Ijas Ahamed (1)
Prashant Patil (1)
Moses Soliman (1)
Shweta Lodha (1)
Mark Pelf (1)
Satya Karki (1)
Saravanan Ponnusamy (1)
Rijwan Ansari (1)
Ganesan C (1)
Onkar Sharma (1)
Mahender Pal (1)
Sergey Vasiliev (1)
Mahesh Chand (1)
Munib Butt (1)
Ashish Bhatnagar (1)
Muthusamy Thangavel (1)
Ramasagar Pulidindi (1)
Sourav Kayal (1)
Gaurav Kumar (1)
Satheesh Elumalai (1)
Prakash Tripathi (1)
Abubackkar Shithik (1)
Arvind Singh (1)
Pawan Kumar (1)
Jatin Malik (1)
Sateesh Arveti (1)
Gaurav Gahlot (1)
Brij Mishra (1)
Rion Williams (1)
Debendra Dash (1)
Related resources for NULL
No resource found
Windowing Enhancements New T-SQL Enhancement in SQL Server
10/29/2024 6:29:27 AM.
SQL Server 2022 introduces advanced T-SQL features, enhancing window functions, aggregations, and NULL handling. New options like the WINDOW clause and IGNORE NULLS optimize complex data queries, redu
Searching Items in Sitecore without Solr Indexes
10/22/2024 7:24:39 AM.
In Sitecore, we often need to perform searches for items without using Solr. This article explores a recursive search approach using the ManualSearch class to retrieve specific items or lists from the
Using Attributes and Metadata in C# 12
10/21/2024 5:38:45 AM.
Ziggy Rafiq demonstrates how to use attributes and metadata in C# 12 including improvements in parameter types, reflection capabilities, and best practices for maintaining self-documenting code.
Check Constraint in SQL Server 2012
10/16/2024 9:55:46 AM.
A Check Constraint in SQL Server enforces Domain Integrity by ensuring valid values for specific table columns. It restricts invalid data entries, rejects values that don't meet set conditions, an
A Detailed Explanation of COUNT in SQL Server
10/1/2024 5:10:59 AM.
This article explores the differences between SQL counting methods: COUNT(*), COUNT(1), COUNT(column_name), and COUNT(DISTINCT column_name). It highlights their purposes, performance considerations, a
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
Dynamically Creating a Table in SQL Server from Information Schema
7/19/2024 11:01:55 AM.
This SQL script dynamically creates a table in SQL Server by utilizing INFORMATION_SCHEMA and system views. It constructs the table definition, including columns, data types, constraints, and default
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
Mastering the Null-Coalescing Operator in C#
6/30/2024 6:58:45 AM.
Learn how to efficiently handle null values in C# using the null-coalescing operator. This guide covers the syntax, practical applications, and advanced techniques to enhance your programming skills.
Null Object Design Pattern in .NET Core
6/7/2024 4:27:35 AM.
A behavioral design pattern called the Null Object Pattern offers an object to represent an interface's missing object. In cases when a null object would result in a null reference exception, it&#
Null Propagation Operator: A New Feature of C# 6.0
5/29/2024 8:10:30 AM.
On November 12, 2014, Microsoft announced Visual Studio 2015 Preview and C# 6.0, featuring the Null Propagation Operator. This operator simplifies null checks, reducing code complexity and bugs. It al
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-
Null-Conditional Operators in C#
5/27/2024 6:59:26 AM.
This article explains Null-conditional Operators in C#, detailing their use for simplifying null checks, avoiding NullReferenceExceptions, working with collections, and combining with extension method
Understanding ToString() vs Convert.ToString() in C#
5/23/2024 10:30:46 AM.
In C#, both ToString() and Convert.ToString() are used to convert objects to their string representation. However, they have different usages and behavior. Understanding the differences between these
Common JavaScript Mistakes To Avoid
5/22/2024 5:46:06 AM.
Enhance JavaScript skills by avoiding common mistakes like inefficient looping and mishandling null values, and mastering array manipulation techniques
C# 8.0 ('Nullable Enable') To Avoid Null Reference Exception
4/10/2024 9:34:02 AM.
Explore the C# 8.0 nullable enable feature, identifying null reference exceptions in production code. Understand its implementation, compiler verification, and error detection, ensuring proper initial
Exception Filters in MVC
4/2/2024 9:12:12 AM.
Learn how MVC handles exceptions using built-in and custom exception filters. Explore the HandleError attribute for managing exceptions and creating custom error pages. Avoid the dreaded Yellow Scree
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
A Comprehensive Guide to Nullable Reference Types in C# 10
3/8/2024 2:55:22 AM.
Explore a comprehensive guide to leveraging nullable reference types in C# 10 by Ziggy Rafiq, providing detailed explanations, code examples, and best practices for improving code safety and robustnes
Understanding Directives in .NET
3/5/2024 10:08:21 AM.
Explore the significance of directives in .NET development, understanding types like preprocessor, reference, warning suppression, and nullable context directives. Learn their syntax and implementatio
String.IsNullOrEmpty() vs String.IsNullOrWhiteSpace()
2/13/2024 10:56:35 AM.
Learn when to use String.IsNullOrEmpty() and String.IsNullOrWhiteSpace() in C#. Understand their differences for effective null and whitespace checks, enhancing data validation and code reliability.
Null Value And Null Reference Handling - C#6 To C# 9 New Features - Day One
2/12/2024 9:21:51 AM.
This article covers the options available in C# for null value and null reference handling. It includes new features of null handling introduced in C# 6.0, C# 8.0, and the upcoming version of C# 9.0.
How To Handle Null Values In C#
2/8/2024 4:08:34 AM.
In C#, NULL values are handled differently for value types and reference types. Value types cannot be assigned NULL values directly, but reference types can. Nullable types provide a solution for assi
NULL Conditional Operator In C# 6.0
2/7/2024 11:41:56 AM.
In C# programming, developers often encounter the "Object reference not set to an instance of an object" exception, commonly known as a NullReferenceException. However, with the introduction
Handling Null Values in DataGrid
2/7/2024 11:30:13 AM.
n C# programming, developers often encounter the "Object reference not set to an instance of an object" exception, commonly known as a NullReferenceException. However, with the introduction
Null Coalescing (??) Operator in C#
2/7/2024 11:29:43 AM.
In this article, we will learn about Null Coalescing (??) Operator in C# programming. Explore the Null Coalescing (??) Operator in C#, a versatile tool for handling null values. Learn its syntax, usag
Null Conditional Check in C# 6
2/6/2024 8:32:44 AM.
This article explains the Null condition check in C# 6."Delve into the Null Conditional Operator in C# 6.0, streamlining null checks for enhanced simplicity. Learn its application in handling pro
Null Handling in C# Using Null-Conditional and Coalescing Operators
1/25/2024 6:58:35 AM.
In C# programming, null handling is a critical consideration for robust and error-resistant code. This brief guide introduces two powerful operators, the null-conditional operator (?.) and the null-co
Learn How to Use C# 12 in .NET Framework 4.7.2/4.8 Solutions
1/16/2024 9:01:09 AM.
Unlock the capabilities of C# 12 in .NET Framework 4.7.2 to 4.8.1 with Visual Studio 2022. Learn the upgrade process, and explore features like literals, nullable types, records, and array expressions
Null Coalescing operator JavaScript
1/11/2024 8:04:17 AM.
Nullish Calescing Operator. The Null coalescing operator (??) assigns a default value to a variable if null or undefined, streamlining default value assignments.
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
Null-Coalescing Assignment Operator In C# 8.0
10/17/2023 6:52:36 AM.
In this article, we will learn how to use Null-coalescing assignment operator in C# and also check the updated requirements of Null-coalescing operator requirements.
Null Propagation Operator In C# 6.0
9/11/2023 11:30:14 AM.
This article describes a new feature of C# 6.0, the null propagation operator.
NULL Values in SQL
9/2/2023 6:40:39 AM.
In this article, we will learn about NULL Values in SQL. Explore the significance of NULL values in SQL, their benefits in data flexibility, and potential challenges. Learn how to handle NULLs effecti
How to Handle Null Values in MYSQL?
8/10/2023 5:49:30 AM.
Here we will learn how to handle null values and null values functions in MySQL.Handling null values in MySQL is an important aspect of database management, as null represents the absence of a value i
Null Operators in C#
7/31/2023 6:52:31 AM.
Learn how to handle null properties in C# with various null operators and simplified code snippets. Happy coding!
Early Return Pattern in C#
7/28/2023 5:41:42 AM.
We will have an overview of the early return pattern and some examples in C#
Save Null Value in SharePoint Online People Picker using Power Automate
6/27/2023 5:10:25 AM.
Save Null Value in SharePoint Online List People Picker using Power Automate. Learn how to handle tricky situations and sync data dynamically in this article.
LINQ Methods
6/16/2023 6:47:15 AM.
Linq Methods
Top Kotlin Interview Questions For Beginners
4/27/2023 6:35:23 AM.
This article is all about some basics question and answers for kotlin
C# 12's Improved Nullability- What It Means for Your Code and How to Use It
4/18/2023 5:39:09 AM.
C# 12's Improved Nullability: What It Means for Your Code and How to Use It
C# 12 Preview Features: Improving Productivity and Performance
4/17/2023 6:37:02 AM.
C# 12 Preview Features: Improving Productivity and Performance
What is the difference between 'null' and 'undefined' in JavaScript?
4/4/2023 5:14:46 AM.
Learn about the difference between 'null' and 'undefined' in JavaScript and when to use them.
SQL IS NULL And IS NOT NULL Operators
3/6/2023 7:11:52 AM.
This explores the SQL's NULL and IS NOT NULL operators to test for a NULL and non-NULL value.
Replace Nulls With Specified Values in SQL Server
2/21/2023 12:44:01 AM.
In this article we will see the various ways to replace null values in a table. ISNULL() function, CASE statement, COALESCE() function can be used to replace null values in a SQL Server table.
Nullable Types in C#
2/15/2023 2:09:17 PM.
A C# nullable type is a data type that contains the defined data type or the value of null. This article explains the use of C# Nullable Types.
ISNULL VS COALESCE in SQL
2/8/2023 9:48:42 AM.
In this article you will learn about ISNULL versus COALESCE in SQL.
Differences Between IsNull() and Coalesce() Functions in SQL Server 2012
2/8/2023 9:31:09 AM.
This article features the differences between the IsNull() and Coalesce() functions in SQL Server 2012.
How To Check If An Array Is Empty In C#
2/2/2023 10:46:46 AM.
In this article, we will explore various methods to determine if an array is empty in C#. The Length property, Count() extension method of LINQ or the IsNullOrEmpty() method can be used to check if th
SPARSE Column in SQL Server
1/9/2023 6:26:42 AM.
SPARSE column is ordinary type column that has an optimized storage for NULL values.
How To Use The Nullish Coalescing Operator in JavaScript
12/30/2022 5:57:45 AM.
The nullish coalescing operator (??) is a new feature in JavaScript that provides a way to fall back to a default value when dealing with null or undefined. In this post, we're going to discuss th
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.
Throw Statement in C#
11/24/2022 9:04:40 AM.
In this article I will explain you about Throw Statement in C#.
Solution For New-AzResourceGroup : ‘this.Client.SubscriptionId’ Cannot Be Null
10/20/2022 7:53:09 AM.
In this article, you will learn about Solution For New-AzResourceGroup : ‘this.Client.SubscriptionId’ Cannot Be Null.
Creating Your Own Exception Classes in C#
9/16/2022 11:07:04 AM.
In this article, I will explain you about Creating Your Own Exception Classes in C#.
Nullable Types in C#: Basic Introduction
8/31/2022 9:05:11 AM.
This article gives a quick view in to the problems faced with the value type objects and the solution to the problems. This beautiful facility is introduced by Microsoft as an concept called “Nullable
Introduction to .Net Framework 2.0 Nullable Types
8/24/2022 8:59:41 AM.
Sometimes you work with a value type that does not have a defined value in certain circumstances. For example, a field in a database might need to distinguish between having been assigned a meaningful
Checking For Empty or Null String in C#
8/23/2022 10:20:39 AM.
In this article, we will look at how to simplify checking for NULL and empty strings using C#.
Thread-Safe Events In C#
7/31/2022 11:02:37 PM.
Discussion on the proper method to check for null-value and raise Event in C#.
How To Handle Nullable Reference In .NET 6
4/18/2022 7:07:58 AM.
As we know there are so many changes in .Net 6 and C# 10. This article describes one of the changes in C#10 on writing properties and objects of a class with an example.
Handle Nulls In Parse JSON Action In Power Automate
4/7/2022 1:47:33 PM.
Whenever working with json payload’s in power automate, always a possibility of receiving null values inside json, where Parse JSON Action will be errored out because of these null values. To handle t
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#.
Solution - Non-nullable Property Must Contain a Non-null Value in .NET 6
1/15/2022 4:57:51 AM.
Non-nullable property must contain a non-null value when exiting constructor. Consider declaring the property as nullable
Usage Of Coalesce Function In Power Automate
8/13/2021 1:30:55 PM.
In Power Automate, most of the common scenario is to verify null values and default to a specific value, in Power Automate it can be achieved easily using Coalesce Function as an example and Plan Obje
Undefined Vs Null In JavaScript
8/12/2021 4:19:21 AM.
In this article, you will learn about undefined and null in JavaScript.
Different Ways To Handle NULL In SQL Server
8/12/2021 4:13:02 AM.
In this article, I have described various ways to handle NULL in SQL Server.
Easy Fix For -"It Is Of Type 'Null' But Is Expected To Be A Value"- Power Automate
6/3/2021 10:07:47 AM.
This article is about fixing the issue for the blank option set value in Power Automate.
Entity Framework Error: The Relationship Could Not be Changed Because One or More of the Foreign-key Properties is Non-nullable
4/15/2021 5:07:13 AM.
I am currently working on a MVC and Entity Framework based project in which I encountered a problem with Entity Framework when trying to delete an entity from a related data collection and one or more
Object reference not set to an instance of an object and the Null object Design Pattern
2/23/2021 2:53:47 AM.
in C# with .Net Core
Check How You Remember Nullable Value Types - Let's Peek Under The Hood
11/9/2020 6:52:04 PM.
In this article, you will learn to check how you remember nullable value types. Let's peek under the hood.
Data Column in ADO.NET
10/29/2020 4:16:38 AM.
In this article I will explain about Data Colum in ADO.Net.
Null-Coalescing Assignment And Enhancement Of Interpolation In C# 8
8/13/2020 7:55:56 AM.
In this article, you will learn about Null-coalescing assignment and Enhancement of interpolation in C# 8.
Fallback And Target Null Values In WPF
7/31/2020 11:37:13 AM.
In this article, you will learn how to manage error-prone code with 2 simple properties in WPF.
How to enable Nullable Reference Types
7/29/2020 1:33:35 AM.
Learn how you can enable the Nullable Reference Types feature in C# 8 and start fixing nullability issues in your code base.
Nullable Reference Types in C# 8
7/28/2020 1:22:03 AM.
In this video, we will talk about C# newly introduced feature which is nullable reference types
C# 8 Positional and Property Pattern
7/28/2020 1:18:10 AM.
C# 8 Positional and Property Pattern
Statistical Inference For Machine Learning
7/15/2020 8:31:03 AM.
AI is a multidisciplinary field that requires a range of skills in statistics, mathematics, predictive modeling and business analysis. An AI professional should feel at ease to build the algorithms ne
Null Object Design Pattern
5/12/2020 9:08:36 PM.
Null objects can be used in place of real objects when the object is expected to do nothing.
Set Default Value as Null or Blank to Power Apps Dropdown List
5/4/2020 11:17:33 AM.
In this article, you will learn how to set the default value as null or blank to a Power Apps dropdown list.
Understand Undefined ,NaN and Null in JavaScript
4/27/2020 12:00:14 PM.
This article explains undefined, NaN and null in JavaScript.
Advance JavaScript: Understand Undefined in JavaScript
4/16/2020 6:58:04 PM.
In this article we will understand undefined keyword (Let's use the term keyword) of JavaScript. After reading this article you will understand the both keyword in and it's functionality.
Elvis Operator And Range Traversal Of An Array Kotlin
3/19/2020 9:00:50 AM.
In this article, you will learn about elvis operator and range traversal of an array kotlin.
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.
Working With Nullable Reference Types In C# 8.0
10/14/2019 11:35:32 PM.
This article explains how to work with Nullable reference types in C# 8.0 and demonstrates how to use it in application development.
NULL Object Design Pattern
9/19/2019 1:31:43 AM.
In this video, we will talk about null object design pattern and will see how we can abstract away our client code from null checks across the entire application.
.NET Core - Handling Exceptions
9/3/2019 11:59:59 PM.
In this article, we are going to explore different exceptions and how to handle them in order to get maximum usage from a try catch block.
Kotlin - Null Safety
8/11/2019 10:37:01 AM.
Kotlin null safety is used to eliminate the risk of null references in the code. In this article, you will learn about Null Safety in Kotlin.
Understanding SQL Server Constraints
8/8/2019 11:55:40 PM.
In this article, I am going to explain SQL Server constraints such as Unique key constraint Primary key and foreign key and how to implement constraints in SQL Server.
How To Ignore Null Values In AutoMapper
7/26/2019 3:14:28 PM.
In this article, you will learn how to Ignore Null values in AutoMapper in ASP.NET CORE.
Sum of Columns of Two Tables Into One Column in SQL Server 2012
7/8/2019 5:35:02 AM.
This article will give you an idea of how to add columns of two tables into one column and also defines how to handle a null value in SQL Server.
Enter Null Values for DateTime Column of SQL Server
4/8/2019 4:39:46 AM.
Inserting a null value to the DateTime Field in SQL Server is one of the most common issues giving various errors. Even if one enters null values the value in the database is some default value as 1/1
Ternary Operator | Null Coalesce Operator | C# Tutorial
1/23/2019 11:46:25 AM.
This video is about the two commonly used operators in C# - 1)Ternary Operators 2)Null Coalesce OperatorsThe video tells how you can utilize these two operators and minimize the number of lines of
Beautifying C# Code - Part II
1/30/2018 2:42:00 AM.
In this video, how we can beautify\reduce number of lines in your C# Code.
C# 8.0 - Experimenting With Non-Nullable Reference Type Using Visual Studio 2017
12/28/2017 7:46:47 PM.
Nullable Reference Type is one of the most popular upcoming features of C# which may be released with C# 8.0. However, C# 8.0 has not been released yet; development is going on so till the final relea
Productive C# - Null Conditional Operator
11/24/2017 12:46:19 AM.
Learn how to use the null conditional operator in C# to increase readability and make your code more compact. Let the compiler generate all the boilerplate code for you!
Null Object Design Pattern
7/29/2017 1:56:59 PM.
A null object is also known as a Stub, an Active Nothing or an Active Null. It helps our program logic to get rid of null checks where ever possible. We all know, that we can not call methods on a nul
Deep Dive to Nullable Types in C#
6/29/2017 1:12:24 AM.
Here you will learn about the C# Nullable Type. Nullable Type is a value type but it has features of both Reference and Value type. Nullable Type has the capability to hold a value or can have a null
The Path Is Null And Full Of Squiggles
4/6/2017 2:21:05 PM.
The Path is Null and Full of Squiggles.
Nullable Types And Null Coalescing Operator In C#
2/27/2016 12:17:34 PM.
In this article you will learn about nullable types and the null coalescing operator in C#. We will also see its use in LINQ queries.