Monday, November 9, 2009

UNBOXING SAMPLE

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

namespace ConsoleApplication15
{
class Program
{
static void Main(string[] args)
{
int i = 5;
Object obj = i; // implicit boxing
int j = (int)obj;// explicit un-boxing

}
}
}

No comments:

Post a Comment