Skip to main content

C#: Program #2 ( Implicit Conversion)

using System;

namespace Implicit_Casting
{
    class Program
    {
        static void Main(string[] args)
        {
            byte no = 200;
            int number = no;
            Console.WriteLine(number);

            Console.ReadLine();
        }
    }
}

Comments

Popular posts from this blog