yes,By explicit interface implementation
Example:
protected void Page_Load(object sender, EventArgs e)
{
I1 obj1 = new A();
I2 obj2 = new A();
lblResult1.Text = obj1.Interview();
lblResult2.Text = obj2.Interview();
}
interface I1
{
string Interview();
}
interface I2
{
string Interview();
}
class A : I1, I2
{
string I1.Interview()
{
return "Result2";
}
string I2.Interview()
{
return "Result";
}
}