Monday, November 9, 2009

BOXING SAMPLE PROGRAM

using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication15
{
class Program
{
static void Main(string[] args)
{
int i = 10;
Object obj = i; // implicit boxing
obj.ToString();

}
}
}

No comments:

Post a Comment