using System;
public class Program
{
public static void Main()
try
byte byteVal = 255;
object boxed = byteVal;
int unboxed = (int)boxed;
}
catch(Exception ex)
Console.WriteLine("Error:");
Console.WriteLine(ex.Message);