Nullable bool Types : Nulllable « Data Types « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Data Types » NulllableScreenshots 
Nullable bool Types
  
using System;
using System.Collections.Generic;
using System.Text;

class DatabaseReader {
    // Nullable data field.
    public int? numbericValue;
    public bool? boolValue = true;

    // Note the nullable return type. 
    public int? GetIntFromDatabase() { return numbericValue; }

    // Note the nullable return type. 
    public bool? GetBoolFromDatabase() { return boolValue; }
}

class Program {
    static void Main(string[] args) {
        DatabaseReader dr = new DatabaseReader();

        int? i = dr.GetIntFromDatabase();
        if (i.HasValue)
            Console.WriteLine("Value of 'i' is: {0}", i);
        else
            Console.WriteLine("Value of 'i' is undefined.");
        // Get bool from 'database'.
        bool? b = dr.GetBoolFromDatabase();
        if (b != null)
            Console.WriteLine("Value of 'b' is: {0}", b);
        else
            Console.WriteLine("Value of 'b' is undefined.");
        // If the value from GetIntFromDatabase() is null, 
        // assign local variable to 100.
        int? myData = dr.GetIntFromDatabase() ?? 100;
        Console.WriteLine("Value of myData: {0}", myData);
    }
}

   
  
Related examples in the same category
1.Declare a nullable type by adding the ? type modifier in a value type declaration.
2.Nullable variable
3.Nullable int Types
4.Nulllable HasValue
5.Is it Nullable
6.Nullable extension: Has Value And Equals
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.