About 41,300 results
Open links in new tab
  1. Nullable value types - C# reference | Microsoft Learn

    Jan 20, 2026 · A nullable value type T? represents all values of its underlying value type T and an additional null value. For example, you can assign any of the following three values to a bool? …

  2. Nullable type - Wikipedia

    Nullable types are a feature of some programming languages which allow a value to be set to the special value NULL instead of the usual possible values of the data type.

  3. Nullable types in C# - GeeksforGeeks

    Sep 6, 2025 · Suppose, in a table a column required null values, then you can use nullable type to enter null values. Nullable type is also useful to represent undefined value.

  4. Taming the Billion Dollar Mistake: Maarten ... - The JetBrains Blog

    Nov 4, 2025 · His closing summary captures the essence perfectly: “Nullable reference types give you design time and compile time safety in .NET, not at runtime.” This session serves as both a technical …

  5. Nullable Types in C# - TutorialsTeacher.com

    A nullable type can represent the correct range of values for its underlying value type, plus an additional null value. For example, Nullable<int> can be assigned any value from -2147483648 to 2147483647, …

  6. Understanding Nullable types in Programming - w3resource

    Learn what nullable types are, why they are useful, and how to use them in languages like Python, JavaScript, and C#. Includes examples and best practices.

  7. C# nullable types - working with Nullable types in C# - ZetCode

    Apr 30, 2025 · Master nullable types in C# with this detailed tutorial. Learn how to handle null values, work with nullable data types, and implement null safety effectively in your C# programs, with step-by …

  8. C# - Nullable Examples - Dot Net Perls

    Apr 11, 2023 · Nullable types are value types that are wrapped inside the nullable type. They can be useful when you want to add another state (invalid or uninitialized) to a value type.

  9. How Nullable Types Work in C#: A Complete Guide - Medium

    Dec 18, 2024 · By understanding and effectively using nullable types, you can write safer and more robust code. In this guide, we will explore how nullable types work in C# and how to use them …

  10. Nullable types - The complete C# tutorial

    Nullable objects always come from a base data type, e.g. an integer as in the previous examples. While these data types may have a default value, the default value of a nullable is always null.