- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
private void button6_Click(object sender, EventArgs e)
{
string str;
FileStream fs = new FileStream("file.data", FileMode.Open,FileAccess.Read);
BinaryReader br = new BinaryReader(fs, Encoding.UTF8);
try
{
while (true)
{
str = br.ReadString();
listBox1.Items.Add(str);
}
}
catch { MessageBox.Show("Файл file.data успешно считан", "Успех!", MessageBoxButtons.OK, MessageBoxIcon.Asterisk); }
fs.Close();
br.Close();
}