接口方法的成员有不同的类型
我有这个界面
public interface TestInterface
{
[returntype] MethodHere();
}
public class test1 : TestInterface
{
string MethodHere(){
return "Bla";
}
}
public class test2 : TestInterface
{
int MethodHere(){
return 2;
}
}
有什么方法可以使 [returntype] 动态化吗?
I have this interface
public interface TestInterface
{
[returntype] MethodHere();
}
public class test1 : TestInterface
{
string MethodHere(){
return "Bla";
}
}
public class test2 : TestInterface
{
int MethodHere(){
return 2;
}
}
Is there any way to make [returntype] dynamic?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要么将返回类型声明为 Object,要么使用通用接口:
Either declare the return type as Object, or use a generic interface:
并不是真正动态,但您可以使其通用:
如果这不是您想要的,请提供有关您希望如何使用界面的更多详细信息。
Not really dynamic but you could make it generic:
If that's not what you're after, please give more details about how you'd like to be able to use the interface.