What happens if you inherit multiple interfaces and they have conflicting method names?
using System;
namespace WindowsApplication1
{
public interface a
{
void b();
}
public interface c
{
void b();
}
public class Class1:a,c
{
public Class1()
{
//
// TODO: Add constructor logic here
//
}
#region a Members
public void d()
{
// TODO: Add Class1.d implementation
}
#endregion
#region c Members
public void b()
{
// TODO: Add Class1.b implementation
}
#endregion
}