我正在开发 Winform 应用程序,该应用程序将员工数据作为 4 个元素的数组,并将这些数据正确保存到带有分隔符(“,”)的一行中的文本文件中。
我的问题是如何让它加载任何行数据并识别分隔符(“,”),以便我可以让它通过第一项名称读取所有数据?
public partial class Form1 : Form
{
string[] data = new string[4];
string name;
string job;
string salary;
string join;
#region Save
void save()
{
if (textBox1.Text == "" || textBox2.Text == "" || textBox3.Text == "" || textBox4.Text == "")
{
MessageBox.Show("Please Fill All Fields", "error");
}
FileStream file = new FileStream("info.txt", FileMode.Append, FileAccess.Write);
StreamWriter wr = new StreamWriter(file);
wr.WriteLine(String.Join(",", data));
wr.Flush();
wr.Close();
comboBox1.Items.Add(data[0]);
textBox1.Clear();
textBox2.Clear();
textBox3.Clear();
textBox4.Clear();
}
#endregion
#region Search
void search()
{
FileStream file = new FileStream("info.txt", FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(file);
sr.ReadLine(string.//what should i do here?
string[] lines = File.ReadAllLines("info.txt");
data[0].CompareTo(comboBox1.SelectedItem);
sr.ReadLine();
if (data[0] == name)
{
textBox1.Text = (data[0]);
textBox2.Text = (data[1]);
textBox3.Text = (data[2]);
textBox4.Text = (data[3]);
}
}
#endregion