I was wondering if one interface can inherit from another. And if so, can you access the parent methods from the child?
A pseudo code example
IParentInterface
{
int GetFoo();
}
IChildInterface : IParentInterface
{
int GetBar();
}
// In some function..
IChildInterface ChildInterface;
ChildInterface.GetFoo();