Related resources for Nullable type
  • 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 types in c#1/24/2015 9:50:41 PM. Nullable types are instances if System.Nullable. A nullable type can represent the normal range of values of its underlying value type plus an additional null value.
  • 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 Types2/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.NET11/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.010/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.
  • 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.
  • Nullable Types in C#: Basic Introduction1/30/2007 2:06:46 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 Types” in the C# 2.0.
  • Nullable Types in C#: Basic Introduction1/30/2007 2:06:46 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 Types” in the C# 2.0.
  • New Features in C# version 2.0 - Partial Types8/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.
  • Introduction to .Net Framework 2.0 Nullable Types8/23/2006 12:47:31 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 value and never having been assigned a value. Value types can be extended to take either their normal values or a null value. Such an extension is called a nullable type
  • Introduction to .Net Framework 2.0 Nullable Types8/23/2006 12:47:31 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 value and never having been assigned a value. Value types can be extended to take either their normal values or a null value. Such an extension is called a nullable type
  • C# 2.0 Feature: Nullable Types12/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#.
C# Language Specification 5.0
This book provides a complete description of the C# language 5.0.
Download