我正在使用Java將一個程序轉換爲C#,其中我遇到了一些使用接口匿名的問題。請告訴我如何在C#中實現這一點? 這是java中的示例,我們如何爲C#編寫內部匿名?我們如何使用c#接口的內部匿名?
interface Test
{
public void wish();
}
class Main
{
public static void main(String[] args)
{
Test t=new Test()
{
public void wish()
{
System.out.println("output: hello how r u");
}
};
t.wish();
}
}
僅供參考。通常,接口以字母I開頭,在本例中爲ITest。這是知道哪些是接口的好方法。阿米特回答你的問題相當好! ;) –
[在c#中創建接口的實例]的可能的重複(http://stackoverflow.com/questions/17708528/creating-an-instance-of-a-interface-in-c-sharp) – Fried
可能的重複[是否有C#相當於此?](http://stackoverflow.com/questions/15581737/is-there-ac-sharp-equivalent-of-this) – nawfal