0
我有這個接口成員有不同的類型
public interface TestInterface
{
[returntype] MethodHere();
}
public class test1 : TestInterface
{
string MethodHere(){
return "Bla";
}
}
public class test2 : TestInterface
{
int MethodHere(){
return 2;
}
}
有沒有什麼辦法讓[返回類型]活力呢?
感謝這正是我一直在尋找! – 2010-01-16 22:17:34