Showing posts with label int to Char Datatype Conversion. Show all posts
Showing posts with label int to Char Datatype Conversion. Show all posts

Monday, April 25, 2016

int to Char Datatype Conversion

using System;
namespace TypeConversionApplication 
{
 class ExplicitConversion 
 {
 static void Main(string[] args) 
 {
 int a = 66;
 char b = Convert.ToChar(a);
 Console.WriteLine(b);
 Console.ReadKey();
 }
 }
}
Output :DB