Sunday, 22 August 2010

how to consume interface fom diff project

//how to consume interface fom diff project
using System;
using OOPSProj;
namespace SecondProject
{
class Class1
{
static void Main()
{
Rectangle r = new Rectangle(134, 56);
Console.WriteLine(r.GetArea());
Console.WriteLine("Second Project Second Class");
Console.ReadLine();
}
}
}