Csharp Explicit Conversion using System;class Program{ static void Main(string[] args) { double x = 2.1; int y = 12; int z = (int)x + y; //Explicit conversion from double to int Console.WriteLine(z); Console.Read(); }} Email ThisBlogThis!Share to TwitterShare to Facebook