在編程科學中這個操作的官方名稱是什麼? 拳擊還是什麼? 我標誌着符合 「< ----」C#接口操作名稱
Auto a = new Auto();
// What de name of this operation? boxing or... ?
INitro inintro = a; // <--- There
inintro.DoExecute();
class Auto:INitro,IChip
{
void INitro.DoExecute()
{
System.Console.WriteLine("INITRO");
}
void IChip.DoExecute()
{
System.Console.WriteLine("ICHIP");
}
}
interface INitro
{
void DoExecute();
}
你的意思是「任務」? –