从文件加载值后,我试图返回一个通用列表。但是,经过大量摆弄类型操作后,我仍然无法同意我的看法。代码如下;我的问题是:
- 我是否需要像下面开始那样识别每种键类型,还是有更快的方法?我看到 'where T: ...' 在这里可能是相关的,但如果可能的话,我想允许 DateTime、int、string、double 等,我看不出如何用 'where' 来做这些。
- 为什么我不能将我的 DateTime 项目添加到日期时间的列表中?
- 当我尝试获取类型(listType)时,这似乎超出了范围。即使我在上面使用它的行中声明了类型,它也表示不存在这样的对象。
非常感谢您的想法
public static List<T> FileToGenericList<T>(string FilePath, int ignoreFirstXLines = 0, bool stripQuotes = true)
{
List<T> output = new List<T>();
Type listType = output.GetType().GetGenericArguments()[0];
try
{
using (StreamReader stream = new StreamReader(File.Open(FilePath, FileMode.Open)))
{
string line;
int currentLine = 0;
while ((line = stream.ReadLine()) != null)
{
// Skip first x lines
if (currentLine < ignoreFirstXLines) continue;
// Remove quotes if needed
if (stripQuotes == true)
{
line = line.Replace(@"""", @"");
}
// Q1 - DO I HAVE TO HAVE THIS FOR EACH TYPE OR IS THERE A QUICKER WAY
if (listType == typeof(System.DateTime))
{
DateTime val = new System.DateTime();
val = DateTime.Parse(line);
// Q2 ERROR: 'Argument type is not assignable to parameter type 'T''
output.Add(val);
// For some reason the type 'listType' from above is now out of scope when I try a cast
output.Add((listType)val);
}
if (listType == typeof(System.String))
{
//DateTime val = new System.DateTime();
//val = DateTime.Parse(line);
//output.Add(val.ToString());
}
// Continue tracking for line skipping purposes
currentLine++;
}
}
}
catch (Exception ex)
{
throw new Exception("Error - there was a problem reading the file at " + FilePath + ". Error details: " + ex.Message);
}
return output;
}