Example #1
0
        public void Visit(FolderMethods f)
        {
            FileMethods[] mas = FolderMethods.myfilesEntity(f.GetMyName());

            foreach (FileMethods i in mas)
            {
                Visit(i);
            }
        }
Example #2
0
        public void Visit(FolderMethods f)
        {
            FileMethods[] mas  = FolderMethods.myfilesEntity(f.GetMyName());
            string        dano = "";

            foreach (FileMethods i in mas)
            {
                dano += i.getMytTxt();
            }

            string hashed = MD5.CreateMD5(dano);

            MessageBox.Show(hashed);
        }