Interface_Inheritance3
Merging common interests, using interface. 
Code :

using System;
//csc Interface_Inheritance3.cs
namespace ConsoleApplication1
{
interface Iparty1
{ void eprint(); }
interface Iparty2
{ void eprint(); }

public class RP : Iparty1, Iparty2
{
// One destination for both
public void eprint()
{ Console.WriteLine(":Destination Birthday Party"); }
}
class Programm
{
static void Main(string[] args)
{
Console.WriteLine("Name conflict Resovled through Objects");
RP r2 = new RP();
//r1.eprint();
r2.eprint();
Console.ReadLine();
}
}
}