public HePhuongTrinh(string file)
        {
            var txt  = new ReadTxt(file);
            var data = txt.TachPhanTuSo();

            dataToHPT(data);
        }
Exemple #2
0
        public DaThuc(string file)
        {
            var txt  = new ReadTxt(file);
            var temp = txt.TachPhanTuSo()[0].ToList();

            temp.Reverse();
            daThuc = temp;
        }
Exemple #3
0
        public MaTran(string file)
        {
            var txt = new ReadTxt(file);

            MT = txt.TachPhanTuSo();
        }