1
public static List<customModel> getList(type customModel)
{ 
  List<customModel> tempList = new List<customModel>(10);
  return tempList;
}

是否可以返回从其他地方传递的类型列表?我一直在做自己的项目,并注意到如果有任何方法可以做到这一点,我的代码会简单得多。

4

2 回答 2

10

你的意思是使用这样的泛型

public static List<T> getList<T>()
{ 
  List<T> tempList = new List<T>(10);
  return tempList;
}

你可以这样称呼它:

var newList = getList<customModel>();

或在 C# 3.0 之前(var不可用):

List<customModel> newList = getList<customModel>();

问题是,您可以轻松地做到这一点:

var newList = new List<customModel>(10);
于 2012-11-01T17:27:43.893 回答
3

使用泛型:

public static List<T> getList<T>()
{
    return new List<T>(10);
}

像这样称呼它:

var myList = getList<int>();
于 2012-11-01T17:28:31.947 回答