C#接口指定通用返回类型
发布时间:2020-12-15 03:55:06 所属栏目:百科 来源:网络整理
导读:我有这样的东西: public interface IExample{ int GetInteger() T GetAnything(); //How do I define a function with a generic return type???^^^^^} 这可能吗??? 解决方法 如果整个界面应该是通用的: public interface IExampleT{ int GetInteger();
我有这样的东西:
public interface IExample { int GetInteger() T GetAnything(); //How do I define a function with a generic return type??? ^^^^^ } 这可能吗??? 解决方法
如果整个界面应该是通用的:
public interface IExample<T> { int GetInteger(); T GetAnything(); } 如果只有方法需要通用: public interface IExample { int GetInteger(); T GetAnything<T>(); } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |