using System;
using System.Collections.Generic;
using System.Text;
namespace Laba5_1
{
class First :Second
{
public string name { get; set; }
public string secondname { get; set; }
public First(string str)
{
string[] parts = str.Split(';');
name= parts[0];
secondname = parts[1];
comment = parts[2];
nubmers = int.Parse(parts[3]);
day = (parts[4]);
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace Laba5_1
{
class Second
{
public string day { get; set; }
public int nubmers { get; set; }
public string comment { get; set; }
}
}
class Program
{
static void Main(string[] args)
{
List list = new List();
using (StreamReader sr = File.OpenText(@"D:\111.txt"))
{
while (!sr.EndOfStream)
{
list.Add(new First(sr.ReadLine()));
}
}
while (true) {
Console.Write(" Введіть дію" + " \n");
Console.WriteLine("додати дані нажми 'A'");
Console.WriteLine("шукати дані нажми 'B'");
Console.WriteLine("показати всі дані нажми 'C'");
Console.WriteLine("Сортування 'F'");
Console.WriteLine("Видалення 'D'");
Console.WriteLine("Почистити конколь 'Enter'/Назад");
switch (Console.ReadKey().Key)
{
case ConsoleKey.A:
Console.WriteLine("Введіть дані");
Console.WriteLine("Введіть назву");
string Name = Console.ReadLine();