Converts a base data type to another base data type.
using System; public class MainClass { public static void Main() { double dNumber = 12.34; try { int iNumber = System.Convert.ToInt32(dNumber); } catch (System.OverflowException) { System.Console.WriteLine( "Overflow in double to int conversion."); } } }