Example for creating Intrinsic data types in C#

static void data()
{
            // create instance using new operator 
            double doubleVal = new double();  
            int intVal = new int();
            //doubleVal and intVal set to 0              
}
Tags :

Leave Your Comment