There is a simple answer: no, C # does not allow it in the same way as in Delphi.
, #, Delphi, : http://docwiki.embarcadero.com/RADStudio/en/Implementing_Interfaces, . " ( Win32 )".
, . # - ( ):
public class Blah : ISomeInterface
{
public ISomeInterface implementer { getter and setter here }
public int ISomeInterface.DoThis()
{
if (implementer) return implementer.DoThis();
}
public void ISomeInterface.DoThat(int param)
{
if (implementer) implementer.DoThat(param);
}
etc...
DoThis DoThat - ISomeInterface, Blah. # . Delphi (.. , ), implements class interface.
, implements delegation, #.