Hi all, I am looking at MS.NET docs and I have found an strange explicit interface implementation:
interface IFoo {
event Handler Bar;
...
}
class X : IFoo {
event Handler IFoo.Bar()
{
}
...
}
For me that's a strange declaration. It's not legal anyway since
interface explicit implementations for events must be property syntaxed
but I really can't understand what that code can mean. I would like to
know what's that supposed to work.
Anyway, it's not legal so don't worry too much, but if it's written must
be because you might think of writing it, no?.
Thanks,
Jaime.
--
// http://www.go-mono.org -- The Mono Project. .NET + freedom.
signature.asc
Description: This is a digitally signed message part
