我有一个WriteList
将列表保存到文件中的功能。这个函数有参数List<Object>
,所以我可以传递不同类型的列表作为参数。
public void WriteList(List<object> input, string ListName)
{
WriteToFile("List - " + ListName);
foreach (object temp in input)
{
WriteToFile(temp.ToString());
}
}
从我的代码中调用此函数时,我想传递我自己制作的类的List<Database>
参数Database
。我收到以下错误:
无法从“System.Collections.Generic.List -Database-”转换为“System.Collections.Generic.List-object-”
所以我的问题是如何将我自己的类转换为一个对象,然后将一个列表传递给我的函数。