interface IBar { void Hidden(); }
class Foo : IBar { public void Visible() { /*...*/ } void IBar.Hidden() { /*...*/ } }
class Program
{
static T CallHidden1<T>(T foo) where T : Foo
{
foo.Visible();
((IBar)foo).Hidden(); //Cast required
return foo;
}
static T CallHidden2<T>(T foo) where T : Foo, IBar
{
foo.Visible();
foo.Hidden(); //OK
return foo;
}
}
C'è qualche differenza (CallHidden1 vs. CallHidden2) è un codice compilato? Esistono altre differenze tra dove T: Foo e dove T: Foo, IBar (se Foo implementa IBar) che accede ai membri dell'interfaccia esplicitamente implementati?Interfaccia esplicitamente implementata e vincolo generico