打开文件来填充collectionBase?

时间:2015-01-14 00:23:50

标签: c# collectionbase

我正在为学校做一个小项目,我坚持他们希望我们使用收集库和文件处理的事实......

我的问题是,在启动应用程序以打开.txt文件并填充集合库时,我需要做些什么?这可能吗?或者还有另一种方法可以让应用程序记住收集库吗?

到目前为止我的代码:

    System.IO.StreamReader reader = new System.IO.StreamReader("Auth.txt");
    String text = reader.ReadToEnd();
    StringBuilder sb = new StringBuilder(); 
    if (File.ReadAllText("Comptes.txt").Contains(Nm))    
    {
        String[] strLines = File.ReadAllLines("Comptes.txt");
        foreach (String strLine in strLines)
            sb.AppendLine(strLine);   
        label1Welcome.Text = sb.ToString();    
        ////here is where I'm stuck - how to insert info in collectionbase 
    }  
    else
    {
       label1Welcome.Text = "!!";
    }
}

0 个答案:

没有答案