Demonstate automatic conversion from long to double

image_pdfimage_print

   
  
/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/
// Demonstate automatic conversion from long to double. 
 
using System; 
 
public class LtoD {    
  public static void Main() {    
    long L; 
    double D; 
   
    L = 100123285L; 
    D = L; 
   
    Console.WriteLine("L and D: " + L + " " + D); 
  }    
}


           
         
    
     


This entry was posted in Data Types. Bookmark the permalink.