C Sharp (C#) - Interfaces
You have two interfaces:
interface IReadable { void Read(); }
interface IWritable { void Write(); }How can a class File implement both interfaces and provide separate implementations for each method?