C Sharp (C#) - Interfaces
Identify the error in this C# code snippet:
interface IA { void Display(); }
interface IB { void Display(); }
class Sample : IA, IB {
public void Display() { Console.WriteLine("Display"); }
void IA.Display() { Console.WriteLine("IA Display"); }
}