C#接口指定通用返回类型

前端之家收集整理的这篇文章主要介绍了C#接口指定通用返回类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这样的东西:
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>();
}

猜你在找的C#相关文章