You have implemented the interface explicitly , which, in general, you do not need to do. Instead, just implement it implicitly and name it, like any other method:
class Rofl : ILol
{
public void LOL() { ... }
public Rofl()
{
LOL();
}
}
(Note that your implementation must also be publicly available.)
source
share