using System;
public class Program
{
public static void Main()
#region ornek3 bilnçli tür dönüşüm
int a = 5;
byte b3 = (byte)a; //casting işlemi performans kaybı sağlıyor.
byte b1 = (byte)12.5f;
Console.WriteLine(b3);
Console.WriteLine(b1);
Console.ReadLine();
#endregion
}