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 Nullable
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Ziggy Rafiq (2)
Jignesh Trivedi (2)
Moses Soliman (2)
Ajay Mor (2)
Mahesh Chand (2)
Naveen Kumar (1)
Ashutosh Gupta (1)
Dhanapal Chandran (1)
Ajay Kumar (1)
Manchun Kumar (1)
Jefferson S. Motta (1)
Prasoon (1)
Prashant Patil (1)
Satya Karki (1)
Rijwan Ansari (1)
Sergey Vasiliev (1)
Andrea Angella (1)
Prakash Tripathi (1)
Abubackkar Shithik (1)
Banketeshvar Narayan (1)
Brij Mishra (1)
Debendra Dash (1)
Abhishek Kumar (1)
Kailash Chandra Behera (1)
John Charles Olamendy (1)
Patrick Smacchia (1)
Justin Finch (1)
Dhiren Patel (1)
Kalyan TKumar (1)
Related resources for Nullable
No resource found
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.
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
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
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
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 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
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
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.
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
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.
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
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
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.
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
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.
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.
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
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
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.
Nullable Type and Null Coalescing Operator in C#
5/26/2014 1:38:08 PM.
This article explains the basics of nullable types and coalescing operator for C# for beginners.
How to Assign Null Value to Value Type Using Nullable Types
2/26/2013 6:58:00 PM.
In this article you will learn how do assign null value to valuetype by using Nullable types.
Introduction to .Net Framework 2.0 Nullable Types in VB.NET
11/9/2012 6:33:48 AM.
Sometimes you work with a value type that does not have a defined value in certain circumstances.
New features in C# 2.0
10/13/2012 5:19:59 AM.
In this article, I will learn about and use the new features in C# 2.0 added by the Microsoft designers, such as generics, anonymous methods, partial types, static classes, nullable types, and limiting access to properties.
C# 2.0 Nullable Types
10/13/2012 4:07:12 AM.
The designers of C#2 have added the concept of nullable types to deal with a weakness of value types versus reference types. It is then essential to have properly assimilated these two notions.
WPF ComboBox doesn't bind correctly - Binding to Nullable Ints
9/29/2012 9:49:53 AM.
If you have been working with WPF and have had issues with your ComboBox or any list control binding then you can stop pulling your hair out.
Checking Nullable Values in .NET
11/29/2008 11:48:34 AM.
This tip shows how to check values retrived from a database are null or not.
What is new in C# 2.0?
8/13/2007 10:06:35 AM.
In this article, I discuss new features added to C# 2.0.
New Features in C# version 2.0 - Partial Types
8/31/2006 1:57:33 AM.
Partial types are new addition to C# language version 2.0, which is available with the .NET Framework 2.0 or Visual Studio 2005. This article discusses the partial classes and how to create and use them in your applications.
C# 2.0 Feature: Nullable Types
12/17/2005 6:26:51 AM.
C# 2.0 allows you to assign null values to primitive types including boolean and integer, which wasn't possible in previous version of C#.