namespace Chapter_2_Skill_2._3_ExplicitInterface
static public void Main(string[] args)
var report = new Report();
report.GetPrintableContent();
string GetPrintableContent();
class Report : IPrintable
public string GetPrintableContent()
throw new NotImplementedException();
throw new NotImplementedException();
class MoveableObject: IRight, ILeft {