Nulllable HasValue : Nulllable : Data Types C# Source Code


Custom Search

C# Source Code » Data Types » Nulllable »

 

Nulllable HasValue








    
 



using System;
using System.Collections.Generic;
using System.Text;


public class MyTest {
    public static void NullableTest(Nullable<int> intVal1, int intVal2) {
        if (intVal1.HasValue == true)
            Console.WriteLine(intVal1);
        else
            Console.WriteLine("Value1 is NULL");

        if (intVal2 > 0)
            Console.WriteLine(intVal2);
        else
            Console.WriteLine("Value2 is Null?");
    }
}
 
       
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Data Types
» Nulllable