Actually, no matter what you do, it doesn’t mean much.
because who care?
You think you’ve done enough, but the boss thinks you haven’t. There’s always a conflict between you and the boss.
It’s not that the boss doesn’t reply to your emails.
the truth is your things report in the email is not import to him.
so don’t pua yourself.
Interface
public interface ISimpleInterface
{
void ThisMethodRequiresImplementation();
string ThisStringPropertyNeedsImplementingToo
{
get;
set;
}
int ThisIntegerPropertyOnlyNeedsAGetter
{
get;
}
public event EventHandler<EventArgs> InterfacesCanContainEventsToo;
}