...codice che mi ha fatto meditare

Incuriosito dal post di Adrian , "System.Object come tipo base di un tipo interfaccia?", ho provato a scrivere due righe di codice...

 

interface IInterface{
}
class InterfaceUser: IInterface{
}
//..
InterfaceUser iu = new InterfaceUser();
IInterface i = iu;
string sByIInterface = i.ToString(); //why is it possible?
string sByInterfaceUser = iu.ToString();
MessageBox.Show(
string.Format( "ToString By Default Class Interface = {0}\nImplicit ToString By Second Interface = {1}",  
sByInterfaceUser, sByIInterface), "Interface Test"); 

I miei commenti? Per ora ci sto ankora meditando...

«giugno»
domlunmarmergiovensab
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910