System.Int32 value : Data Type : Data Type C# Examples


C# Examples » Data Type » Data Type »

 

System.Int32 value









    
using  System;

class  MainClass
{
        public  static  void  Main(string[]  args)
        {
        System.Int32  intA  =  1001;
        System.Int32  intB  =  1000;
        
        if(intA  ==  intB)
            Console.WriteLine("Same  value!\n");
        else
            Console.WriteLine("Not  the  same  value!\n");

        }

}
    
   
  
   



Output

Not the same value!


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Type
» Data Type