19 Şubat 2016 Cuma

C# Bilinçsiz Tür Dönüşümüne Küçük Bir Örnek

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            byte a = 50;
            //byte değişkeni bilinçsizce int tipine dönüştürülür.
            int b = a;
            Console.WriteLine(b);
        }
    }

}

Hiç yorum yok: